.route-plan {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.route-plan__title {
    color: #2c3e50;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.route-plan__section {
    margin-bottom: 2rem;
}

.route-plan__subtitle {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.route-plan__activities,
.route-plan__foods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.route-plan__item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.route-plan__item:hover {
    transform: translateY(-5px);
}

.route-plan__number {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.route-plan__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.route-plan__details {
    flex: 1;
}

.route-plan__item-title {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.route-plan__description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
}

#route-planner-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

#route-planner-btn:hover {
    background: #2980b9;
}

#route-planner-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .route-plan {
        padding: 1.5rem;
        margin: 1rem;
    }

    .route-plan__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .route-plan__subtitle {
        font-size: 1.2rem;
    }

    .route-plan__activities,
    .route-plan__foods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .route-plan__item {
        padding: 1.2rem;
        flex-direction: row;
        align-items: center;
    }

    .route-plan__image {
        width: 90px;
        height: 90px;
    }

    .route-plan__item-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .route-plan__description {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    #route-planner-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1.1rem;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .route-plan {
        padding: 1rem;
        margin: 0.8rem;
    }

    .route-plan__title {
        font-size: 1.3rem;
    }

    .route-plan__image {
        width: 70px;
        height: 70px;
    }

    .route-plan__item {
        padding: 1rem;
    }

    .route-plan__item-title {
        font-size: 1rem;
    }

    .route-plan__description {
        font-size: 0.85rem;
    }

    #route-planner-btn {
        padding: 0.7rem 1.4rem;
        font-size: 1rem;
    }
}