:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary-color: #212121;
    --secondary-light: #424242;
    --text-light: #FAFAFA;
    --text-dark: #212121;
    --bg-light: #F5F5F5;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 80px 0;
    position: relative;
}

.wave-top, .wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 50px;
}

.wave-top {
    top: 0;
    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='%23F5F5F5'%3E%3C/path%3E%3C/svg%3E");
}

.wave-bottom {
    bottom: 0;
    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,3V120H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F5F5F5'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease;
    transform: skewX(-15deg);
    z-index: -1;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    border-radius: 0;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--text-light);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.about {
    background-color: var(--bg-light);
}

.about-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1;
}

.about-image img {
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

.benefit-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.benefit-card h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.programs {
    background-color: #f9f9f9;
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-7px);
}

.program-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.program-content {
    padding: 25px;
}

.program-features {
    margin: 15px 0;
    padding-left: 20px;
}

.program-features li {
    margin-bottom: 8px;
    position: relative;
}

.program-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

.approach {
    background-color: var(--bg-light);
}

.approach-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-text {
    flex: 1.5;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.approach-image img:hover {
    transform: scale(1.05);
}

.approach-list {
    margin: 20px 0;
    padding-left: 20px;
}

.approach-list li {
    margin-bottom: 12px;
    position: relative;
}

.approach-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonials {
    background-color: #f9f9f9;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
}

.testimonial-content h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact {
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
}

.email {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
}

.footer-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.footer-nav {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.footer-programs {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.footer-more {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.footer-policy {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.footer-extra {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.footer-copyright {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4 {
    color: var(--primary-light);
    margin-bottom: 15px;
    position: relative;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 3px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits {
        flex-wrap: wrap;
    }
    
    .benefit-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .about-grid,
    .approach-content,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .about-image,
    .approach-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex: 0 0 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        text-align: center;
    }
    
    .footer-nav {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .footer-contact {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .footer-programs {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .footer-more {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .footer-policy {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .footer-extra {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
    
    .footer-copyright {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo,
    .footer-nav,
    .footer-contact,
    .footer-programs,
    .footer-more,
    .footer-policy,
    .footer-extra,
    .footer-copyright {
        grid-column: 1 / 2;
    }
    
    .footer-logo {
        grid-row: 1 / 2;
    }
    
    .footer-nav {
        grid-row: 2 / 3;
    }
    
    .footer-contact {
        grid-row: 3 / 4;
    }
    
    .footer-programs {
        grid-row: 4 / 5;
    }
    
    .footer-more {
        grid-row: 5 / 6;
    }
    
    .footer-policy {
        grid-row: 6 / 7;
    }
    
    .footer-extra {
        grid-row: 7 / 8;
    }
    
    .footer-copyright {
        grid-row: 8 / 9;
    }
}