/* Eurasia Agro Semey - Единый файл стилей */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            background: #f8f9fa;
            padding-top: 1rem;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }

        /* Hero Section */
        .page-hero {
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            padding: 10rem 3rem 8rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .page-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .page-hero p {
            font-size: 1.35rem;
            opacity: 0.98;
            line-height: 1.8;
        }

        /* Filter Section */
        .filter-section {
            max-width: 1200px;
            margin: -3rem auto 5rem;
            padding: 0 3rem;
            position: relative;
            z-index: 10;
        }

        .filter-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 2fr 1.5fr 1fr;
            gap: 2rem;
            align-items: end;
        }

        .filter-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.8rem;
        }

        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .filter-group select:focus,
        .filter-group input:focus {
            outline: none;
            border-color: #007549;
        }

        .filter-btn {
            padding: 0.9rem 2rem;
            background: #007549;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .filter-btn:hover {
            background: #00a066;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 117, 73, 0.3);
        }

        /* Vacancies Section */
        .vacancies-section {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            font-size: 1rem;
            color: #718096;
        }

        .vacancies-grid {
            display: grid;
            gap: 2rem;
        }

        .vacancy-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .vacancy-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,117,73,0.12);
            border-color: #007549;
        }

        .vacancy-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            gap: 2rem;
        }

        .vacancy-title h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.8rem;
            letter-spacing: -0.2px;
        }

        .vacancy-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #718096;
            font-size: 0.9rem;
        }

        .vacancy-type {
            padding: 0.5rem 1rem;
            background: rgba(0, 117, 73, 0.1);
            color: #007549;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .vacancy-description {
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .vacancy-requirements {
            margin-bottom: 2rem;
        }

        .vacancy-requirements h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1rem;
        }

        .requirements-list {
            display: grid;
            gap: 0.8rem;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            color: #4a5568;
            font-size: 0.95rem;
        }

        .requirement-item:before {
            content: "•";
            color: #007549;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .vacancy-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }

        .vacancy-salary {
            font-size: 1.3rem;
            font-weight: 700;
            color: #007549;
        }

        .apply-btn {
            padding: 0.9rem 2.5rem;
            background: #007549;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .apply-btn:hover {
            background: #00a066;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 117, 73, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: #f8f9fa;
            padding: 6rem 3rem;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1.5rem;
            letter-spacing: -0.3px;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .cta-btn {
            padding: 1.2rem 3rem;
            background: #007549;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background: #00a066;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 117, 73, 0.3);
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 968px) {
            header {
                margin: 0 1rem;
            }

            nav {
                padding: 1rem 0.5rem 1rem 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-hero {
                padding: 7rem 2rem 5rem;
            }

            .page-hero h1 {
                font-size: 3rem;
            }

            .filter-section {
                padding: 0 2rem;
            }

            .filter-card {
                grid-template-columns: 1fr;
                padding: 2rem;
            }

            .vacancies-section {
                padding: 0 2rem 6rem;
            }

            .vacancy-card {
                padding: 2rem;
            }

            .vacancy-header {
                flex-direction: column;
                gap: 1rem;
            }

            .vacancy-footer {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }

            .cta-section {
                padding: 4rem 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {
            .page-hero {
                padding: 5rem 1.5rem 4rem;
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .filter-section {
                padding: 0 1.5rem;
                margin: -2rem auto 4rem;
            }

            .filter-card {
                padding: 1.5rem;
            }

            .vacancies-section {
                padding: 0 1.5rem 5rem;
            }

            .vacancy-card {
                padding: 1.5rem;
            }

            .vacancy-title h3 {
                font-size: 1.3rem;
            }

            .vacancy-meta {
                gap: 1rem;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .vacancy-card:hover {
                transform: none;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* ========================================= */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            font-weight: 400;
            background: 
                linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%),
                url('Основное_фото.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding-top: 0;
        }

        /* Header Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }



        /* Hero Banner */
        .page-hero {
            width: 100%;
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0050317a;
            z-index: 1;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            z-index: 2;
        }

        .page-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 0 3rem;
            color: white;
        }

        .page-hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .page-hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
            line-height: 1.1;
        }

        .page-hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 2px 15px rgba(0,0,0,0.2);
            max-width: 750px;
            margin: 0 auto 3rem;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 4rem;
            margin-top: 2rem;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-center {
            margin-left: 3rem;
        }

        .hero-stat-left {
            margin-left: 1.5rem;
        }

        .hero-stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 15px rgba(0,0,0,0.25);
            line-height: 1.1;
            letter-spacing: -0.5px;
            min-height: 6.2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-stat-label {
            font-size: 1rem;
            opacity: 0.92;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            line-height: 1.4;
        }

        .stat-unit {
            font-size: 0.65em;
            font-weight: 600;
            opacity: 0.85;
            letter-spacing: 0.3px;
        }

        /* Main Content */
        .content-section {
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .content-section.alt-bg {
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #007549;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Impact Grid */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        /* Impact Text Section with Illustrations */
        .impact-text-section {
            margin: 3rem 0;
        }

        .impact-text-block {
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .impact-text-block.reverse {
            grid-template-columns: 1fr 450px;
        }

        .impact-text-block.reverse .impact-illustration {
            order: 2;
        }

        .impact-text-block.reverse .impact-content {
            order: 1;
        }

        .impact-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px; 
        }

        .impact-label {
            position: absolute;
            bottom: 10px;
            left: 15px;
            right: 15px;
            background: rgba(220, 53, 69, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
        }

        .impact-content p {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .impact-card {
            background: white;
            padding: 0;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 117, 73, 0.1);
            overflow: hidden;
        }

        .content-section.alt-bg .impact-card {
            background: white;
        }

        .impact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,117,73,0.15);
        }

        .impact-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .impact-card-content {
            padding: 2rem;
        }

        .impact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 1.8rem;
        }

        .impact-card h3 {
            font-size: 1.3rem;
            color: #1a202c;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.2px;
        }

        .impact-card p {
            color: #4a5568;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .impact-card ul {
            list-style: none;
            margin-top: 1.2rem;
        }

        .impact-card li {
            padding: 0.5rem 0 0.5rem 1.8rem;
            position: relative;
            color: #4a5568;
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .impact-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #007549;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Policy Section */
        .policy-grid {
            display: grid;
            gap: 3rem;
            margin-top: 3rem;
        }

        .policy-item {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            overflow: hidden;
            display: block;
        }

        .policy-item:nth-child(even) {
            display: block;
        }

        .content-section.alt-bg .policy-item {
            background: white;
        }

        .policy-content {
            padding: 3rem;
            border-left: 5px solid #007549;
        }

        .policy-item:nth-child(even) .policy-content {
            border-left: 5px solid #007549;
            border-right: none;
        }

        .policy-item h3 {
            font-size: 1.5rem;
            color: #007549;
            margin-bottom: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.2px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .policy-item h3 span {
            font-size: 1.8rem;
        }

        .policy-item p {
            color: #4a5568;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .policy-item ul {
            list-style: none;
            display: grid;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .policy-item li {
            padding: 1rem 1.2rem 1rem 2.8rem;
            position: relative;
            background: #f8f9fa;
            border-radius: 8px;
            color: #4a5568;
            font-size: 0.88rem;
            line-height: 1.6;
            border-left: 3px solid #007549;
        }

        .policy-item li:before {
            content: "→";
            position: absolute;
            left: 0.9rem;
            color: #007549;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            padding: 5rem 3rem;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-item .number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .stat-item .label {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 400;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 968px) {
            header {
                margin: 0.5rem 1rem 0;
                top: 0;
            }

            nav {
                padding: 1rem 0.5rem 1rem 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-hero {
                height: 70vh;
                min-height: 500px;
            }

            .page-hero-content {
                padding: 0 2rem;
            }

            .page-hero h1 {
                font-size: 3rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 2.5rem;
            }

            .hero-stat-number {
                font-size: 2.2rem;
            }

            .content-section {
                padding: 4rem 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .impact-text-section {
                margin: 2rem 0;
            }

            .impact-text-block {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                margin-bottom: 3rem;
            }

            .impact-text-block.reverse {
                grid-template-columns: 1fr;
            }

            .impact-text-block.reverse .impact-illustration,
            .impact-text-block.reverse .impact-content {
                order: 0;
            }

            .landscape-card {
                width: 320px;
                height: 220px;
            }

            .impact-content p {
                text-align: left;
                font-size: 0.95rem;
            }

            .policy-item {
                display: block;
            }

            .policy-item:nth-child(even) {
                display: block;
            }

            .policy-item:nth-child(even) .policy-content {
                border-right: none;
                border-left: 5px solid #007549;
            }

            .policy-content {
                padding: 2rem;
            }

            .stats-section {
                padding: 4rem 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .page-hero {
                height: 65vh;
                min-height: 450px;
            }

            .page-hero-content {
                padding: 0 1.5rem;
            }

            .page-hero-badge {
                font-size: 0.8rem;
                padding: 0.6rem 1.5rem;
                margin-bottom: 1.5rem;
            }

            .page-hero h1 {
                font-size: 2.2rem;
                margin-bottom: 1.5rem;
            }

            .page-hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .hero-stat-number {
                font-size: 1.9rem;
            }

            .hero-stat-label {
                font-size: 0.95rem;
            }

            .content-section {
                padding: 3rem 1.5rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .landscape-card {
                width: 280px;
                height: 200px;
            }

            .impact-content p {
                font-size: 0.9rem;
            }

            .impact-card {
                padding: 0;
            }

            .impact-card-image {
                height: 180px;
            }

            .impact-card-content {
                padding: 1.5rem;
            }

            .impact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .policy-content {
                padding: 1.5rem;
            }

            .policy-item h3 {
                font-size: 1.25rem;
            }

            .policy-item li {
                padding: 0.9rem 1rem 0.9rem 2.5rem;
                font-size: 0.86rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-item .number {
                font-size: 3rem;
            }

            footer {
                padding: 2rem 1.5rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .impact-card:hover {
                transform: none;
            }

            .policy-item:hover {
                transform: none;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* ========================================= */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            background: #f8f9fa;
            padding-top: 1rem;
        }

        /* Header Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }

        /* Hero Section */
        .page-hero {
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            padding: 10rem 3rem 8rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .page-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .page-hero p {
            font-size: 1.35rem;
            opacity: 0.98;
            line-height: 1.8;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        /* Featured Story */
        .featured-story {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 3rem;
        }

        .featured-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .featured-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,117,73,0.2);
        }

        .featured-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            font-weight: 500;
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: white;
            color: #007549;
            padding: 0.7rem 1.5rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .featured-content {
            padding: 3rem;
        }

        .featured-date {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .featured-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }

        .featured-content p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            background: #007549;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .read-more-link:hover {
            background: #00a066;
            gap: 1.2rem;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
        }

        /* Divider */
        .section-divider {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 3rem;
        }

        .divider-line {
            height: 1px;
            background: #e2e8f0;
        }

        /* Stories Grid */
        .stories-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem 8rem;
            background: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 3rem;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .stories-grid {
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .story-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
        }

        .story-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,117,73,0.15);
        }

        .story-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
        }

        .story-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: white;
            color: #007549;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .story-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .story-date {
            color: #718096;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .story-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1rem;
            line-height: 1.4;
            letter-spacing: -0.2px;
        }

        .story-card p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #007549;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .story-card:hover .story-link {
            gap: 0.8rem;
        }

        /* Load More */
        .load-more-section {
            text-align: center;
            padding: 4rem 3rem 6rem;
            background: #f8f9fa;
        }

        .load-more-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #007549;
            color: white;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        .load-more-btn:hover {
            background: #00a066;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 117, 73, 0.3);
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 2.5rem;
            }
        }

        @media (max-width: 968px) {
            header {
                margin: 0 1rem;
                top: 0.5rem;
            }

            nav {
                padding: 1rem 0.5rem 1rem 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-hero {
                padding: 7rem 2rem 5rem;
            }

            .page-hero h1 {
                font-size: 3rem;
            }

            .page-hero p {
                font-size: 1.2rem;
            }

            .featured-story {
                padding: 0 2rem;
                margin: 4rem auto;
            }

            .featured-image {
                height: 400px;
            }

            .featured-content {
                padding: 2.5rem;
            }

            .featured-content h2 {
                font-size: 2rem;
            }

            .stories-section {
                padding: 5rem 2rem 6rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2.5rem;
            }

            .stories-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .story-image {
                height: 250px;
            }
        }

        @media (max-width: 640px) {
            .page-hero {
                padding: 5rem 1.5rem 4rem;
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .featured-story {
                padding: 0 1.5rem;
                margin: 3rem auto;
            }

            .featured-image {
                height: 300px;
            }

            .featured-content {
                padding: 2rem;
            }

            .featured-content h2 {
                font-size: 1.7rem;
            }

            .featured-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .read-more-link {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            .section-divider {
                margin: 3rem auto;
                padding: 0 1.5rem;
            }

            .stories-section {
                padding: 4rem 1.5rem 5rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .story-image {
                height: 220px;
            }

            .story-content {
                padding: 1.5rem;
            }

            .story-card h3 {
                font-size: 1.25rem;
                margin-bottom: 0.8rem;
            }

            .story-card p {
                font-size: 0.9rem;
                margin-bottom: 1.2rem;
            }

            .load-more-section {
                padding: 3rem 1.5rem 5rem;
            }

            .load-more-btn {
                padding: 1rem 2.5rem;
                font-size: 0.95rem;
            }

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                margin-bottom: 2rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .featured-card:hover {
                transform: none;
            }

            .story-card:hover {
                transform: none;
            }

            .load-more-btn {
                min-height: 44px;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* ========================================= */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            background: #f8f9fa;
            padding-top: 0;
        }

        /* Header Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }



        /* Split Hero Section */
        .split-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            position: relative;
            margin-top: 0;
            padding-top: 0;
        }

        .hero-side {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
        }

        .hero-side:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .hero-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        /* Hide any auto-generated text overlays */
        .hero-side::before,
        .hero-side::after {
            font-size: 0 !important;
            text-indent: -9999px !important;
        }

        /* Ensure no text is visible on background images */
        .hero-left::before,
        .hero-right::before {
            color: transparent !important;
            text-shadow: none !important;
        }

        .hero-side:hover::before {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .hero-side::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .hero-side:hover::after {
            opacity: 1;
        }

        .hero-left::before {
            background-image: 
                linear-gradient(135deg, rgba(0, 117, 73, 0.4) 0%, rgba(0, 160, 102, 0.3) 100%),
                url('фото6.png');
            background-size: cover, cover;
            background-position: center center, center center;
            background-repeat: no-repeat, no-repeat;
            background-attachment: scroll, scroll;
        }

        .hero-right::before {
            background-image: 
                linear-gradient(135deg, rgba(252, 183, 20, 0.4) 0%, rgba(255, 140, 0, 0.3) 100%),
                url('фото2.png');
            background-size: cover, cover;
            background-position: center center, center center;
            background-repeat: no-repeat, no-repeat;
            background-attachment: scroll, scroll;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 3rem;
            max-width: 500px;
            transition: all 0.3s ease;
        }

        .hero-side:hover .hero-content {
            transform: translateY(-10px);
        }

        .hero-content h2 {
            transition: all 0.3s ease;
        }

        .hero-side:hover .hero-content h2 {
            transform: scale(1.05);
        }

        .hero-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            display: block;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
        }

        .hero-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            letter-spacing: -0.5px;
            line-height: 1.2;
            word-wrap: break-word;
            hyphens: auto;
        }

        .hero-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            margin-bottom: 2rem;
        }

        .hero-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: white;
            color: #007549;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            margin-top: 1rem;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .hero-right .hero-btn {
            color: #fcb714;
        }

        .hero-side:hover .hero-btn {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        }

        /* Detail Section */
        .detail-section {
            padding: 8rem 3rem;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        }

        .detail-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .detail-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 10rem;
        }

        .detail-block:last-child {
            margin-bottom: 0;
        }

        .detail-block.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .detail-block.reverse .detail-image {
            order: 2;
        }

        .detail-block.reverse .detail-content {
            order: 1;
        }

        .detail-image {
            position: relative;
        }

        .detail-image-main {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            font-weight: 500;
            box-shadow: 0 20px 60px rgba(0,117,73,0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .detail-image-main:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 70px rgba(0,117,73,0.3);
        }

        .detail-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .detail-image-main:hover img {
            transform: scale(1.05);
        }

        .detail-image-small {
            position: absolute;
            width: 280px;
            height: 200px;
            background: linear-gradient(135deg, #fcb714 0%, #ff8c00 100%);
            border-radius: 12px;
            bottom: -40px;
            right: -40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 15px 45px rgba(252, 183, 20, 0.3);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .detail-image-small:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 55px rgba(252, 183, 20, 0.4);
        }

        .detail-image-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .detail-image-small:hover img {
            transform: scale(1.05);
        }

        .detail-block.reverse .detail-image-small {
            right: auto;
            left: -40px;
        }

        .detail-content h2 {
            font-size: 3rem;
            color: #007549;
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .detail-content p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .detail-features {
            display: grid;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0,117,73,0.1);
        }

        .detail-block.reverse .feature-item:hover {
            transform: translateX(-10px);
        }



        .feature-text h4 {
            font-size: 1.2rem;
            color: #1a202c;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature-text p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.7;
            margin: 0;
        }

        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            padding: 5rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 968px) {
            header {
                margin: 0.5rem 1rem 0;
                top: 0;
            }

            nav {
                padding: 1rem 0.5rem 1rem 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .split-hero {
                grid-template-columns: 1fr;
                min-height: auto;
                margin-top: 0;
                padding-top: 0;
            }

            .hero-side:hover {
                transform: none;
                box-shadow: none;
            }

            .hero-side:hover::before {
                transform: none;
            }

            .hero-side:hover .hero-content {
                transform: none;
            }

            .hero-side:hover .hero-content h2 {
                transform: none;
            }

            .hero-side:hover .hero-btn {
                transform: none;
            }

            .hero-content h2 {
                font-size: 2rem;
                line-height: 1.1;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero-icon {
                font-size: 4rem;
            }

            .detail-section {
                padding: 5rem 2rem;
            }

            .detail-block,
            .detail-block.reverse {
                grid-template-columns: 1fr;
                gap: 3rem;
                margin-bottom: 6rem;
            }

            .detail-block.reverse .detail-image,
            .detail-block.reverse .detail-content {
                order: 0;
            }

            .detail-content h2 {
                font-size: 2.2rem;
            }

            .detail-content p {
                font-size: 1rem;
            }

            .detail-image-main {
                height: 400px;
                border-radius: 12px;
            }

            .detail-image-main img {
                border-radius: 12px;
            }

            .detail-image-small {
                width: 200px;
                height: 150px;
                bottom: -30px;
                right: -20px;
                border-radius: 10px;
            }

            .detail-image-small img {
                border-radius: 10px;
            }

            .detail-block.reverse .detail-image-small {
                left: -20px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .stat-number {
                font-size: 2.8rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }

        @media (max-width: 640px) {
            .split-hero {
                min-height: auto;
                margin-top: 0;
                padding-top: 0;
            }

            .hero-side {
                min-height: 60vh;
            }

            .hero-content {
                padding: 2rem;
            }

            .hero-content h2 {
                font-size: 1.7rem;
                line-height: 1.1;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-icon {
                font-size: 3.5rem;
                margin-bottom: 1.5rem;
            }

            .hero-btn {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            .detail-section {
                padding: 4rem 1.5rem;
            }

            .detail-block {
                margin-bottom: 5rem;
            }

            .detail-content h2 {
                font-size: 1.9rem;
            }

            .detail-content p {
                font-size: 0.95rem;
            }

            .detail-image-main {
                height: 350px;
                border-radius: 12px;
            }

            .detail-image-main img {
                border-radius: 12px;
            }

            .detail-image-small {
                width: 180px;
                height: 130px;
                font-size: 0.85rem;
                bottom: -20px;
                right: -15px;
                border-radius: 8px;
            }

            .detail-image-small img {
                border-radius: 8px;
            }

            .detail-block.reverse .detail-image-small {
                left: -15px;
            }

            .feature-item {
                padding: 1.2rem;
                gap: 0;
            }

            .feature-text h4 {
                font-size: 1.1rem;
            }

            .feature-text p {
                font-size: 0.9rem;
            }

            .stats-bar {
                padding: 4rem 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.95rem;
            }

            footer {
                padding: 2rem 1.5rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .hero-side:hover {
                transform: none;
            }

            .feature-item:hover {
                transform: none;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .hero-icon img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
        }

        @media (max-width: 640px) {
            .hero-icon img {
                width: 80px;
                height: 80px;
            }
        }



        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* ========================================= */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Remove all underlines */
        a, a:hover, a:focus, a:active, a:visited {
            text-decoration: none !important;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            background: 
                linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%),
                url('основное фото.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding-top: 1rem;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }

        /* Hero Section */
        .page-hero {
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            padding: 10rem 3rem 8rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .page-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .page-hero p {
            font-size: 1.35rem;
            opacity: 0.98;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact-section {
            max-width: 1400px;
            margin: -4rem auto 0;
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            position: relative;
            z-index: 10;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info Cards */
        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .info-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,117,73,0.1);
            border: 1px solid rgba(0, 117, 73, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #007549 0%, #00a066 100%);
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,117,73,0.15);
            border-color: rgba(0, 117, 73, 0.2);
        }

        .info-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,117,73,0.2);
        }

        .info-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1rem;
            letter-spacing: -0.2px;
        }

        .info-card p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .info-card .contact-text {
            color: #4a5568;
            font-weight: 400;
        }

        .info-card .contact-link {
            color: #007549;
            font-weight: 500;
        }

        /* Contact Form */
        .contact-form-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .contact-form-card h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1rem;
            letter-spacing: -0.3px;
        }

        .contact-form-card p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.6rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #007549;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: #007549;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .submit-btn:hover {
            background: #00a066;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 117, 73, 0.3);
        }

        /* Map Section */
        .map-section {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
        }

        .map-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Additional Info Section */
        .additional-info {
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
            padding: 6rem 3rem;
            border-radius: 16px;
        }

        .additional-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .additional-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 3rem;
            letter-spacing: -0.3px;
        }

        .additional-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .additional-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.4s ease;
        }

        .additional-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,117,73,0.12);
        }

        .additional-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0, 117, 73, 0.1) 0%, rgba(0, 160, 102, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .additional-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.8rem;
        }

        .additional-card p {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none !important;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 968px) {
            header {
                margin: 0 1rem;
            }

            nav {
                padding: 1rem 0.5rem 1rem 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-hero {
                padding: 7rem 2rem 5rem;
            }

            .page-hero h1 {
                font-size: 3rem;
            }

            .contact-section {
                padding: 4rem 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-info {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .map-section {
                padding: 0 2rem 6rem;
            }

            .map-placeholder {
                height: 400px;
            }

            .additional-info {
                padding: 5rem 2rem;
            }

            .additional-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .page-hero {
                padding: 5rem 1.5rem 4rem;
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .contact-section {
                padding: 3rem 1.5rem;
                margin-top: -3rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .info-card {
                padding: 2rem;
            }

            .contact-form-card {
                padding: 2rem;
            }

            .contact-form-card h2 {
                font-size: 1.7rem;
            }

            .map-section {
                padding: 0 1.5rem 5rem;
            }

            .map-placeholder {
                height: 350px;
            }

            .additional-info {
                padding: 4rem 1.5rem;
            }

            .additional-title {
                font-size: 1.8rem;
            }

            .additional-card {
                padding: 2rem;
            }

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .info-card:hover {
                transform: none;
            }

            .additional-card:hover {
                transform: none;
            }

            .submit-btn,
            .form-group input,
            .form-group textarea,
            .form-group select {
                min-height: 44px;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* ========================================= */

:root {
            --vh: 1vh;
            --primary-color: #007549;
            --primary-hover: #00a066;
            --text-color: #1a202c;
            --text-muted: #4a5568;
            --border-radius: 16px;
            --border-radius-small: 8px;
            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-medium: 0 8px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            font-weight: 400;
            background: 
                linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%),
                url('./Основное_фото.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding-top: 1rem;
        }

        /* Header Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 0 1.5rem;
            border-radius: 16px;
        }

        nav {
            max-width: none;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem 1rem 0.5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #007549;
            letter-spacing: -0.3px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            margin-left: 80px;
            padding-left: 0.5rem;
        }

        .logo:hover {
            color: #00a066;
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #007549;
            background: rgba(0, 117, 73, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }

        .nav-links a::after {
            display: none;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
            min-width: 40px;
        }

        .language-btn {
            background: transparent;
            border: 1px solid rgba(0, 117, 73, 0.3);
            color: #007549;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 36px;
            text-align: center;
            white-space: nowrap;
            gap: 0.5rem;
            margin-left: 2rem;
        }

        .language-btn:hover {
            background: rgba(0, 117, 73, 0.1);
            border-color: rgba(0, 117, 73, 0.5);
        }

        .language-btn.active {
            background: rgba(0, 117, 73, 0.1);
            border-color: #007549;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(0, 117, 73, 0.1);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #007549;
            padding: 0.5rem;
            border-radius: 12px;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            width: 100%;
            height: 95vh;
            height: calc(var(--vh, 1vh) * 95);
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 100%);
        }

        .hero-content {
            position: absolute;
            left: 10%;
            bottom: 15%;
            max-width: 600px;
            color: white;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.25);
            letter-spacing: -0.8px;
            white-space: nowrap;
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.7;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0,0,0,0.25);
            font-weight: 400;
        }

        /* About Us Section */
        .about-section {
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #007549;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .about-content p {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 1.2rem;
            font-weight: 400;
        }

        .about-content ul {
            list-style: none;
            margin-top: 1.5rem;
            display: grid;
            gap: 0.8rem;
        }

        .about-content li {
            padding: 1rem 1rem 1rem 2.5rem;
            position: relative;
            color: #4a5568;
            font-size: 0.95rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 3px solid #007549;
        }

        .about-content li:before {
            content: "✓";
            position: absolute;
            left: 0.8rem;
            color: #007549;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .about-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #007549;
            font-size: 1rem;
            font-weight: 500;
            box-shadow: 0 8px 25px rgba(0,117,73,0.08);
            border: 1px solid rgba(0,117,73,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .about-image-placeholder:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,117,73,0.15);
        }

        .about-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .about-image-placeholder:hover img {
            transform: scale(1.05);
        }

        /* Leadership Section */
        .leadership-section {
            padding: 6rem 3rem;
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
        }

        .leadership-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #007549;
            margin-bottom: 0.8rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .leader-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .leader-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .leader-photo {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            font-weight: 500;
        }

        .leader-info {
            padding: 1.5rem;
            text-align: center;
        }

        .leader-info h3 {
            font-size: 1.2rem;
            color: #1a202c;
            margin-bottom: 0.3rem;
            font-weight: 600;
            letter-spacing: -0.1px;
        }

        .leader-info .position {
            color: #007549;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            letter-spacing: 0.01em;
        }

        .leader-info p {
            color: #4a5568;
            font-size: 0.85rem;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 3rem 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-weight: 600;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
        }

        /* Large Desktop */
        @media (min-width: 1400px) {
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .hero-content p {
                font-size: 1.4rem;
            }
            
            .about-section {
                padding: 8rem 4rem;
            }
            
            .leadership-section {
                padding: 8rem 4rem;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1200px) {
            nav {
                padding: 1rem 1rem 1rem 0.5rem;
            }

            .logo {
                margin-left: -0.5rem;
                font-size: 1.6rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.15rem;
            }

            .about-section {
                padding: 4rem 2rem;
            }

            .about-container {
                gap: 3rem;
            }

            .leadership-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .language-switcher {
                margin-left: 0.5rem;
                min-width: 35px;
            }

            .language-btn {
                font-size: 0.7rem;
                min-width: 32px;
                padding: 0.1rem 0.3rem;
            }

        }

        @media (max-width: 968px) {
            header {
                margin: 0 0.5rem;
                top: 0.5rem;
            }

            nav {
                padding: 0.8rem 0.5rem 0.8rem 0.25rem;
            }

            .logo {
                font-size: 1.4rem;
                margin-left: -0.25rem;
            }

            .language-switcher {
                margin-left: 0.25rem;
                min-width: 32px;
            }

            .language-btn {
                font-size: 0.65rem;
                min-width: 30px;
                padding: 0.1rem 0.25rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
                gap: 0;
                align-items: stretch;
                border-radius: 16px;
                margin-top: 0.5rem;
                z-index: 1000;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(0, 117, 73, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                margin: 0.2rem 0;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .nav-links a:hover {
                background: rgba(0, 117, 73, 0.08);
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
                min-width: 44px;
                min-height: 44px;
            }

            .hero {
                height: 75vh;
                height: calc(var(--vh, 1vh) * 75);
                min-height: 500px;
            }

            .hero-content {
                left: 5%;
                right: 5%;
                bottom: 12%;
            }

            .hero-content h1 {
                font-size: 2.2rem;
                white-space: normal;
                line-height: 1.1;
            }

            .hero-content p {
                font-size: 1.05rem;
                line-height: 1.5;
            }

            .about-section {
                padding: 4rem 2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-content h2 {
                font-size: 2.2rem;
                text-align: center;
            }

            .about-content p {
                font-size: 1rem;
                text-align: center;
                line-height: 1.6;
            }

            .about-image-placeholder {
                height: 320px;
                border-radius: 12px;
            }

            .about-image-placeholder img {
                border-radius: 12px;
            }

            .leadership-section {
                padding: 3.5rem 1.5rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1.05rem;
                padding: 0 1rem;
            }

            .leadership-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            footer {
                padding: 3rem 2rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 640px) {
            body {
                padding-top: 0.5rem;
            }

            header {
                margin: 0 0.25rem;
                top: 0.5rem;
            }

            nav {
                padding: 0.6rem 0.4rem 0.6rem 0.2rem;
            }

            .logo {
                font-size: 1.2rem;
                margin-left: -0.2rem;
            }

            .language-switcher {
                margin-left: 0.2rem;
                min-width: 30px;
            }

            .language-btn {
                padding: 0.08rem 0.2rem;
                font-size: 0.6rem;
                min-width: 28px;
            }

            .nav-links {
                left: 0;
                right: 0;
                border-radius: 12px;
                padding: 1rem;
            }

            .hero {
                height: 65vh;
                height: calc(var(--vh, 1vh) * 65);
                min-height: 450px;
            }

            .hero-content {
                left: 1.5rem;
                right: 1.5rem;
                bottom: 4rem;
            }

            .hero-content h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                letter-spacing: -0.4px;
                white-space: normal;
                line-height: 1.2;
            }

            .hero-content p {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .about-section {
                padding: 3rem 1.5rem;
            }

            .about-content h2 {
                font-size: 1.9rem;
                margin-bottom: 1rem;
                text-align: center;
            }

            .about-content p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
                text-align: center;
                line-height: 1.6;
            }

            .about-content ul {
                margin-top: 1.5rem;
            }

            .about-content li {
                font-size: 0.85rem;
                padding: 0.8rem 0.8rem 0.8rem 2rem;
                margin-bottom: 0.5rem;
            }

            .about-content li:before {
                font-size: 1rem;
                left: 0.6rem;
            }

            .about-image-placeholder {
                height: 280px;
                font-size: 0.9rem;
                margin-top: 1.5rem;
                border-radius: 12px;
            }

            .about-image-placeholder img {
                border-radius: 12px;
            }

            .leadership-section {
                padding: 2.5rem 1rem;
            }

            .section-title {
                margin-bottom: 2rem;
            }

            .section-title h2 {
                font-size: 1.9rem;
            }

            .section-title p {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }

            .leadership-grid {
                gap: 1.5rem;
            }

            .leader-photo {
                height: 250px;
                font-size: 0.9rem;
            }

            .leader-info {
                padding: 1.2rem 1rem;
            }

            .leader-info h3 {
                font-size: 1.1rem;
            }

            .leader-info .position {
                font-size: 0.85rem;
            }

            .leader-info p {
                font-size: 0.8rem;
            }

            footer {
                padding: 2rem 1.5rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section h3 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .footer-section p,
            .footer-section a {
                font-size: 0.85rem;
            }

            .footer-section a {
                padding: 0.5rem 0;
            }

            .footer-bottom {
                font-size: 0.8rem;
                padding-top: 1.5rem;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 380px) {
            body {
                padding-top: 0.25rem;
            }

            header {
                margin: 0 0.1rem;
                top: 0.25rem;
            }

            nav {
                padding: 0.6rem 0.3rem 0.6rem 0.1rem;
            }

            .logo {
                font-size: 1rem;
                margin-left: -0.1rem;
            }

            .language-switcher {
                margin-left: 0.1rem;
                min-width: 28px;
            }

            .language-btn {
                padding: 0.05rem 0.15rem;
                font-size: 0.55rem;
                min-width: 26px;
            }

            .hero {
                height: 60vh;
                height: calc(var(--vh, 1vh) * 60);
                min-height: 400px;
            }

            .hero-content {
                left: 1rem;
                right: 1rem;
                bottom: 2.5rem;
            }

            .hero-content h1 {
                font-size: 1.5rem;
                letter-spacing: -0.3px;
                white-space: normal;
                line-height: 1.1;
            }

            .hero-content p {
                font-size: 0.85rem;
                line-height: 1.4;
            }

            .about-section {
                padding: 2.5rem 1rem;
            }

            .about-content h2,
            .section-title h2 {
                font-size: 1.7rem;
            }

            .about-content p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .about-content li {
                font-size: 0.8rem;
                padding: 0.7rem 0.8rem;
                padding-left: 2rem;
            }

            .about-image-placeholder {
                height: 250px;
            }

            .leadership-section {
                padding: 2.5rem 1rem;
            }

            .section-title p {
                font-size: 0.85rem;
            }

            .leader-info {
                padding: 1.2rem 1rem;
            }

            .leader-info h3 {
                font-size: 1rem;
            }

            .leader-info .position {
                font-size: 0.8rem;
            }

            .leader-info p {
                font-size: 0.75rem;
            }

            footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-section h3 {
                font-size: 0.95rem;
            }

            .footer-section p,
            .footer-section a {
                font-size: 0.8rem;
            }
        }

        /* Ultra Small Mobile (iPhone SE and similar) */
        @media (max-width: 320px) {
            .logo {
                font-size: 0.9rem;
                margin-left: -0.1rem;
            }

            .language-btn {
                padding: 0.04rem 0.12rem;
                font-size: 0.5rem;
                min-width: 24px;
            }

            .hero-content h1 {
                font-size: 1.3rem;
            }

            .hero-content p {
                font-size: 0.8rem;
            }

            .about-content h2,
            .section-title h2 {
                font-size: 1.5rem;
            }

            .about-content p {
                font-size: 0.8rem;
            }

            .about-content li {
                font-size: 0.75rem;
                padding: 0.6rem 0.7rem;
                padding-left: 1.8rem;
            }

            .about-image-placeholder {
                height: 220px;
            }

            .leader-info h3 {
                font-size: 0.95rem;
            }

            .leader-info .position {
                font-size: 0.75rem;
            }

            .leader-info p {
                font-size: 0.7rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 1rem 1.25rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }

            .leader-card:hover {
                transform: none;
            }

            .about-image-placeholder:hover {
                transform: none;
            }

            .scroll-to-top {
                min-width: 44px;
                min-height: 44px;
            }
        }

        /* Responsive images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Ensure all images are responsive */
        .about-container img,
        .leadership-grid img,
        .hero-image-placeholder img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: inherit;
        }

        /* Flexible grid improvements */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 640px) {
            .leadership-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Better text scaling */
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
        }

        @media (max-width: 320px) {
            html {
                font-size: 13px;
            }
        }

        /* Improved container max-widths */
        .about-container,
        .leadership-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 1400px) {
            .about-container,
            .leadership-container {
                max-width: 1400px;
            }
        }

        /* Better spacing for very large screens */
        @media (min-width: 1600px) {
            .about-section,
            .leadership-section {
                padding: 10rem 5rem;
            }
            
            .hero-content h1 {
                font-size: 4.5rem;
            }
            
            .hero-content p {
                font-size: 1.5rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007549 0%, #00a066 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 117, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 117, 73, 0.4);
            background: linear-gradient(135deg, #00a066 0%, #007549 100%);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Mobile adjustments for scroll button */
        @media (max-width: 640px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 380px) {
            .scroll-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }