@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Caveat:wght@400;700&display=swap');

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #F2C94C;
    --light-yellow: #FFF9C4;
    --dark-yellow: #E6B800;
    --accent-color: #5C4B00;
    --text-color: #333333;
    --light-bg: #FFFDF0;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', cursive;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-yellow);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 1rem;
    position: relative;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--accent-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--dark-yellow);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--accent-color);
}

.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-yellow);
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 3px 0;
    transition: var(--transition);
}

.header-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-section {
    background-color: var(--light-bg);
}

.hexagon-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hexagon {
    background-color: var(--primary-yellow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hexagon h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hexagon p {
    color: var(--accent-color);
    font-weight: bold;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.philosophy-section {
    background-color: var(--white);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.programs-section {
    background-color: var(--light-yellow);
    overflow: hidden;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.program-item.reverse {
    flex-direction: row-reverse;
}

.program-circle {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-yellow);
    box-shadow: var(--shadow);
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-info {
    flex: 1;
}

.program-benefits {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.program-benefits li {
    position: relative;
    margin-bottom: 0.5rem;
}

.program-benefits li::before {
    content: "✓";
    color: var(--primary-yellow);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.benefits-section {
    background-color: var(--white);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-wave {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 3rem;
}

.benefits-wave::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    background: var(--primary-yellow);
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 25px;
}

.wave-point {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    margin: 0 0.5rem;
}

.benefit-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-expand {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefits-list {
    columns: 2;
    column-gap: 2rem;
    margin-top: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: "•";
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.testimonials-section {
    background-color: var(--light-yellow);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-honeycomb {
    flex: 0 0 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    background-color: var(--primary-yellow);
    padding: 5px;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.testimonial-content {
    flex: 1;
}

.contact-section {
    background-color: var(--white);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: 'Comfortaa', cursive;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.form-group.consent {
    display: flex;
    align-items: flex-start;
}

.form-group.consent input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.consent label {
    margin-bottom: 0;
}

.main-footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4rem 1rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo, .footer-nav, .footer-policies, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-container h3 {
    color: var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-container ul li {
    margin-bottom: 0.8rem;
}

.footer-container a {
    color: var(--light-yellow);
}

.footer-container a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .about-content, .contact-container {
        flex-direction: column;
    }
    
    .program-item, .program-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .program-benefits li::before {
        position: static;
        margin-right: 0.5rem;
    }
    
    .program-benefits {
        padding-left: 0;
    }
    
    .benefits-wave::before {
        display: none;
    }
    
    .benefits-wave {
        gap: 2rem;
    }
    
    .testimonial-item, .testimonial-item.reverse {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .banner-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .philosophy-card {
        min-width: 100%;
    }
    
    .benefits-list {
        columns: 1;
    }
    
    .hexagon {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .header-banner {
        height: 400px;
    }
    
    .program-circle {
        flex: 0 0 250px;
        height: 250px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (min-width: 375px) and (max-width: 480px) {
    .header-container {
        padding: 0.8rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-container h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
}