* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #7eac38;
    --light-green: #9bc45e;
    --dark-green: #5d8028;
    --accent-green: #a8d576;
    --bg-light: #f5f9ed;
    --text-dark: #2d4a1f;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

/* Navigation */
nav {
    background: white;
    color: var(--primary-green);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--primary-green);
}

nav .logo img {
    height: 60px;
    width: auto;
}

nav .logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-green);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    margin: 6px 0;
    transition: 0.3s;
}

nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav .nav-links a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

nav .nav-links a:hover {
    color: var(--dark-green);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: rgba(126, 172, 56, 0.1);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--primary-green);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 90px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--accent-green);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(126, 172, 56, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image i {
    font-size: 15rem;
    color: var(--primary-green);
    opacity: 0.2;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-green);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-item i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Documents Section */
.documents {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.documents-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.document-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    border: 2px solid transparent;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 172, 56, 0.2);
    border-color: var(--primary-green);
}

.document-icon {
    flex-shrink: 0;
}

.document-icon i {
    font-size: 3rem;
    color: var(--primary-green);
}

.document-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.document-info p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.download-link i {
    font-size: 0.9rem;
}

.document-card:hover .download-link {
    color: var(--dark-green);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.map-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--accent-green);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Content Toggle */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* Responsive - Mobile Menu */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    nav .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

    nav .nav-links.active {
        left: 0;
    }

    nav .nav-links li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(126, 172, 56, 0.1);
    }

    nav .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    .lang-switcher {
        margin-top: 1rem;
        justify-content: center;
    }

    nav .logo img {
        height: 50px;
    }

    nav .logo-text {
        font-size: 1.4rem;
    }

    .hero {
        margin-top: 90px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image i {
        font-size: 8rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        flex-direction: column;
        text-align: center;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }

    .map-container {
        height: 300px;
    }
}