
        /* CSS remains largely the same, but comments are translated */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #2c5f2d;
            --secondary-green: #4a8c4b;
            --accent-orange: #ff6b35;
            --dark-bg: #1a3a1b;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-top: 5px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Enhanced Header */
        header {
            background: rgba(44, 95, 45, 0.98);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.5rem 0;
            background: rgba(44, 95, 45, 1);
        }

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

        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Enhanced Hero */
        .hero {  background: url(ؤخص.png);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 200px 2rem 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,107,53,0.1), transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.2s backwards;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

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

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .cta-primary {
            background: var(--accent-orange);
            color: white;
        }

        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: white;
            color: var(--primary-green);
            transform: translateY(-5px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 4rem 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* Enhanced About */
        .about {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 2rem;
        }

        .about h2 {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .about h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-orange);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .about-text strong {
            color: var(--primary-green);
            font-size: 1.3rem;
            display: block;
            margin-top: 2rem;
        }

        /* Enhanced Values */
        .values {
            background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
            padding: 100px 2rem;
        }

        .values h2 {
            font-size: 3rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .values h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-orange);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .values-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .value-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

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

        .value-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Enhanced Products */
        .products {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 2rem;
        }

        .products h2 {
            font-size: 3rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .products h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-orange);
            margin: 1rem auto;
            border-radius: 2px;
        }

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

        .product-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotateGradient 10s linear infinite;
        }

        @keyframes rotateGradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .product-content {
            padding: 2.5rem;
        }

        .product-content h3 {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            font-size: 1.7rem;
        }

        .product-content p {
            color: var(--text-light);
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }

        .product-content strong {
            color: var(--primary-green);
            display: block;
            margin-top: 1rem;
        }

        .learn-more {
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            gap: 1rem;
        }

        /* Mission Section */
        .mission {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 100px 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="100" fill="white" opacity="0.03"/><circle cx="1100" cy="500" r="150" fill="white" opacity="0.03"/><circle cx="600" cy="300" r="80" fill="white" opacity="0.03"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .mission-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .mission h2 {
            font-size: 3rem;
            margin-bottom: 2.5rem;
        }

        .mission p {
            font-size: 1.3rem;
            line-height: 2;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        /* Contact Section */
        .contact {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 2rem;
        }

        .contact h2 {
            font-size: 3rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .contact h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-orange);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info-section {
            display: flex;
            flex-direction: row;
            gap: 2rem;
        }

        .contact-info-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(-10px);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #e85a2a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--accent-orange);
        }

        .footer-section p {
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--accent-orange);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-orange);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            opacity: 0.8;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--primary-green);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }

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

            .mobile-menu-btn {
                display: block;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

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

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .product-categories,
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
     /* Dropdown Navigation Styles */

.nav-links li {
    position: relative;
}

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Content (Hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1000;
}

/* Dropdown Links */
.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow indicator */
.dropdown > a::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-top: 5px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}
   .logo img{
            width: 170px;
            height: 35px;
        }   /* Dropdown Navigation Styles */

.nav-links li {
    position: relative;
}

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Content (Hidden by default) */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1000;
}


/* Dropdown Links */
.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--primary-green);
    padding-left: 25px;
}

/* Show dropdown on hover */
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow indicator */
.dropdown > a::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-top: 5px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      overflow-x: hidden;
      max-width: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    :root {
      --primary-green: #2c5f2d;
      --secondary-green: #4a8c4b;
      --accent-orange: #ff6b35;
      --dark-bg: #1a3a1b;
      --light-bg: #f8f9fa;
    }

    header {
      background: rgba(44, 95, 45, 0.98);
      color: white;
      padding: 1rem 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 0.5rem 0;
      background: rgba(44, 95, 45, 1);
    }

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

    .logo img {
      width: 150px;
      height: auto;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-orange);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .hero {
      background: url('hero.png') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 180px 1rem 100px;
      position: relative;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
    }

    .cta-primary {
      background: var(--accent-orange);
      color: white;
    }

    .cta-primary:hover {
      background: #e85a2a;
      transform: translateY(-3px);
    }

    .cta-secondary {
      border: 2px solid white;
      color: white;
    }

    .cta-secondary:hover {
      background: white;
      color: var(--primary-green);
      transform: translateY(-3px);
    }

    .about {
      max-width: 1200px;
      margin: 100px auto;
      padding: 0 1rem;
    }

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

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .about img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .about-text p {
      color: #555;
      margin-bottom: 1rem;
    }

    .mission {
      background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
      color: white;
      text-align: center;
      padding: 100px 1rem;
    }

    .mission h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .mission p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.2rem;
      line-height: 1.8;
    }

    .contact {
      max-width: 1200px;
      margin: 100px auto;
      padding: 0 1rem;
    }

    .contact h2 {
      text-align: center;
      color: var(--primary-green);
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .contact-info-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }

    .contact-info-card {
      background: var(--light-bg);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .contact-info-card:hover {
      transform: translateY(-5px);
    }

    footer {
      background: var(--dark-bg);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    footer p {
      opacity: 0.9;
    }

    @media (max-width: 900px) {
      .about-content {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
      }

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

      .mobile-menu-btn {
        display: block;
      }

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

      .hero p {
        font-size: 1.1rem;
      }
    }
