.main-content * {
    box-sizing: border-box;
}

:root {
    --sunshine: #FFD97A;
    --tangerine: #FFB366;
    --mint: #8BD88B;
    --seafoam: #6BC9A8;
    --ocean: #4DB8B8;
    --slate: #333;
    --cream: #F5F0E8;
    --shadow: rgba(0, 0, 0, 0.1);
    --light-gray: #E8E8E8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding: 40px;
    background: white;
}

.hero {
    background: var(--mint);
    border-radius: 40px;
    padding: 80px 60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--slate);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    background: var(--mint);
    border-radius: 30px;
    padding: 40px 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--slate);
    text-align: center;
    margin-bottom: 20px;
}

.hero-content p {
    text-align: center;
    color: var(--slate);
    font-size: 18px;
    line-height: 1.6;
}

.featured-section {
    margin-bottom: 50px;
}

.section-header {
    background: var(--ocean);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px var(--shadow);
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.attraction-card {
    background: var(--light-gray);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    cursor: pointer;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.attraction-card:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.card-content {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--slate);
    line-height: 1.3;
    margin-bottom: 15px;
}

.card-badge {
    position: absolute;
    top: 0;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



.card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 40px;
}

.cta-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--slate);
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-section p {
    color: var(--slate);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--ocean);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(77, 184, 184, 0.3);
    font-family: 'Inter', sans-serif;
}

@media (max-width: 968px) {
    .hero {
        padding: 50px 30px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }
}