:root {
    --primary: #FF9E1F;
    --secondary: #4FB0AE;
    --accent1: #FF6B6B;
    --accent2: #8A4FFF;
    --accent3: #66BB6A;
    --light: #FFFFFF;
    --dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', 'Bubblegum Sans', cursive, sans-serif;
}

body {
    background-color: #F9F7F2;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
header {
    background-color: var(--primary);
    color: var(--light);
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    position: relative;
}

.header-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    /* max-height: 10%; */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.for-who {
    background-color: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.age-badge {
    background-color: var(--accent2);
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 15px 0;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.free-section {
    background-color: var(--accent1);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.free-text {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Program Goals */
.goals {
    margin-bottom: 40px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.goal-card {
    background-color: var(--light);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card.cognitive {
    border-top: 5px solid var(--primary);
}

.goal-card.emotional {
    border-top: 5px solid var(--accent1);
}

.goal-card.social {
    border-top: 5px solid var(--accent2);
}

.goal-card.physical {
    border-top: 5px solid var(--accent3);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.goal-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent1);
    transform: scale(1.05);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .free-text {
        font-size: 1.8rem;
    }
    
    section {
        padding: 30px 0;
    }
}