@font-face {
    font-family: 'Montserrat Alternates';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500;600;700&display=swap');
}

:root {
    --primary-green: #4CAF50;
    --light-green: #8BC34A;
    --dark-green: #2E7D32;
    --primary-yellow: #FFD700;
    --light-yellow: #FFF59D;
    --dark-yellow: #FBC02D;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat Alternates', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-yellow));
    margin: 0.5rem auto;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-yellow));
    color: var(--white);
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(45deg, var(--dark-green), var(--dark-yellow));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.secondary-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 1rem;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--dark-gray);
    font-weight: 600;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-yellow));
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(255, 215, 0, 0.1));
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 10%;
}

.hero-content {
    flex: 1;
    padding: 0 5%;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-content h2:after {
    margin-left: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    padding: 0 5%;
}

.hero-image img {
    border-radius: 15px;
    transform: rotate(3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-section {
    background-color: var(--light-gray);
    padding: 6rem 0;
    position: relative;
}

.diagonal-section {
    position: relative;
    transform: skewY(-2deg);
    margin-top: -2rem;
}

.diagonal-section > * {
    transform: skewY(2deg);
}

.hexagon-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hexagon {
    width: 300px;
    height: 350px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hex-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(50%);
    transition: transform 0.3s ease;
}

.hexagon:hover img {
    transform: scale(1.1);
}

.hexagon:hover .hex-content {
    transform: translateY(0);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text p {
    text-align: center;
}

.programs-section {
    padding: 6rem 5%;
}

.program-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.program-card {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card.reversed {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    flex: 1;
    padding: 2rem;
}

.benefits-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-yellow));
    border-radius: 50%;
}

.benefits-section {
    padding: 6rem 5%;
    background-color: var(--light-gray);
    position: relative;
}

.wave-bg:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--light-green), var(--light-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

.testimonials-section {
    padding: 6rem 5%;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.testimonial.reversed {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex: 1;
    max-width: 300px;
}

.testimonial-image img {
    border-radius: 50%;
    border: 5px solid var(--light-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 2;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 15px;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--light-green);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.testimonial-content h4 {
    color: var(--dark-green);
    text-align: right;
}

.contact-section {
    padding: 6rem 5%;
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.info-item p {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    flex: 2;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:last-of-type {
    grid-column: span 2;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form .btn {
    grid-column: span 2;
    justify-self: center;
    margin-top: 1rem;
    width: 50%;
}

.cta-section {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(255, 215, 0, 0.1));
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    text-align: left;
}

.cta-content h2:after {
    margin-left: 0;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    border-radius: 15px;
    transform: rotate(-3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo {
    width: 80px;
    margin: 0 auto 1rem;
}

.footer-logo h3 {
    margin-bottom: 0.5rem;
}

.footer-nav h4, .footer-contact h4, .footer-legal h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a, .footer-legal a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--primary-yellow);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hexagon {
        width: 250px;
        height: 290px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 1rem 0;
    }

    .hero-section, .program-card, .testimonial, .contact-container, .cta-section {
        flex-direction: column;
    }

    .program-card.reversed, .testimonial.reversed {
        flex-direction: column;
    }

    .hero-content, .hero-image, .card-content, .card-image, .testimonial-content, .testimonial-image {
        width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .testimonial-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:last-of-type {
        grid-column: span 1;
    }

    .contact-form .btn {
        grid-column: span 1;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hexagon {
        width: 220px;
        height: 260px;
    }

    section {
        padding: 4rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    .site-header {
        padding: 1rem 3%;
    }

    .logo {
        width: 40px;
    }

    h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hexagon-container {
        flex-direction: column;
        align-items: center;
    }

    .hexagon {
        width: 100%;
        max-width: 280px;
    }

    .card-content, .testimonial-content, .info-item, .contact-form-container {
        padding: 1.5rem;
    }
}