@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #4CAF50;
    --light-green: #8BC34A;
    --lighter-green: #CDDC39;
    --dark-green: #388E3C;
    --accent-green: #76FF03;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #f5f9f5;
    --border-radius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-green);
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    overflow: hidden;
}

.header-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-green);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.logo-wrapper {
    z-index: 1;
}

.logo-wrapper h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
}

.main-nav {
    z-index: 1;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--white);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-section {
    display: flex;
    min-height: 80vh;
    padding: 60px 5%;
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-green);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 50% 20% / 10% 40%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-section {
    position: relative;
    padding: 80px 5%;
    background-color: var(--light-green);
    overflow: hidden;
}

.leaf-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--accent-green);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.programs-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.programs-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.programs-hexagons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.hexagon {
    position: relative;
    width: 280px;
    height: 320px;
    margin: 20px 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    transition: transform 0.3s ease;
}

.hexagon:hover {
    transform: translateY(-10px);
}

.hexagon-content {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: rgba(255, 255, 255, 0.9);
}

.hexagon-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.hexagon-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.hexagon-content p {
    font-size: 0.9rem;
}

.benefits-section {
    position: relative;
    padding: 80px 5%;
    background-color: var(--light-bg);
    overflow: hidden;
}

.benefits-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--white);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 75% 50%, 50% 100%, 25% 50%, 0% 100%);
}

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 30px 0 50px;
}

.benefits-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon.physical {
    background-color: var(--primary-green);
}

.benefit-icon.mental {
    background-color: var(--light-green);
}

.benefit-icon.social {
    background-color: var(--lighter-green);
}

.benefit-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card ul {
    padding-left: 20px;
}

.benefit-card li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.benefit-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-green);
}

.benefits-text {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-green);
}

.testimonial-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-text);
}

.contact-section {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3, .contact-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-hours {
    grid-column: 1 / -1;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5% 30px;
    gap: 40px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 2rem;
}

.footer-logo p {
    font-style: italic;
}

.footer-nav,
.footer-policies {
    min-width: 200px;
}

.footer-nav h3,
.footer-policies h3 {
    color: var(--lighter-green);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-nav ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-policies a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-policies a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero-section,
    .about-grid {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .benefit-card {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding-bottom: 30px;
    }
    
    .logo-wrapper {
        margin-bottom: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content h2,
    .programs-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .testimonial {
        max-width: 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content h2,
    .programs-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.7rem;
    }
    
    .hexagon {
        width: 250px;
        height: 290px;
    }
}

@media (max-width: 375px) {
    .logo-wrapper h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-content h2,
    .programs-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .about-text p,
    .benefits-text p {
        font-size: 0.95rem;
    }
    
    .hexagon {
        width: 220px;
        height: 260px;
    }
}