/* Tourism (Food & Attractions) Styles */
.hero {
    padding: 40px 0;
}

.hero>h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
    /* Limit height for list items */
    width: auto;
}

.hero-text {
    flex: 1.5;
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1rem;
    color: var(--subtext-color);
    line-height: 1.6;
}

/* RWD */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        min-width: auto;
    }

    .hero-image img {
        width: 100%;
        max-height: 250px;
    }
}