
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fefefe;
            padding-top: 70px; /* Отступ для фиксированного header */
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #2a5c3d;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ========== ИСПРАВЛЕННЫЙ HEADER ========== */
        header {
            background: linear-gradient(rgba(42, 92, 61, 0.95), rgba(42, 92, 61, 0.9));
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            backdrop-filter: blur(5px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }

        .logo-img {
            height: 50px;
            width: auto;
            border-radius: 6px;
            object-fit: contain;
        }

        .logo-text h1 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 3px;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.75rem;
            opacity: 0.9;
            line-height: 1.2;
        }

        /* ========== НАВИГАЦИЯ ========== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .mobile-menu-btn:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu ul {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }

        nav a:hover {
            color: #ffd166;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd166;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* ========== ГЛАВНЫЙ ЭКРАН ========== */
        .hero {
            padding: 60px 0 50px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            text-align: center;
        }

        .hero h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #2a5c3d;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #555;
            line-height: 1.5;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff9a3d;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 154, 61, 0.3);
        }

        .cta-button:hover {
            background-color: #e88a35;
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(255, 154, 61, 0.4);
        }

        /* ========== ОСНОВНЫЕ СЕКЦИИ ========== */
        section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #ff9a3d;
            margin: 12px auto;
            border-radius: 2px;
        }

        .about-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.7;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #2a5c3d;
        }

        /* ========== ФИЧИ ========== */
        .features {
            background-color: #f5fbf7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .feature-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 2.2rem;
            color: #2a5c3d;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .feature-card p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ========== ДОСТИЖЕНИЯ ========== */
        .achievements-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .achievement-item {
            background: white;
            margin-bottom: 15px;
            padding: 18px 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
            border-left: 4px solid #ffd166;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease;
        }

        .achievement-item:hover {
            transform: translateX(5px);
        }

        .achievement-icon {
            color: #ff9a3d;
            font-size: 1.4rem;
            flex-shrink: 0;
            min-width: 25px;
        }

        .achievement-item span {
            font-size: 1rem;
            line-height: 1.5;
        }

        /* ========== ГАЛЕРЕЯ ========== */
        .gallery {
            background-color: #f5fbf7;
        }

        .gallery-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-slider {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            aspect-ratio: 16 / 9;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        .gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            color: #2a5c3d;
            font-size: 1.2rem;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }

        .gallery-btn:hover {
            background-color: white;
            color: #ff9a3d;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-prev {
            left: 10px;
        }

        .btn-next {
            right: 10px;
        }

        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot:hover {
            background-color: #aaa;
        }

        .dot.active {
            background-color: #2a5c3d;
            transform: scale(1.2);
        }

        /* ========== ПРИЗЫВ К ДЕЙСТВИЮ ========== */
        .cta-section {
            text-align: center;
            background: linear-gradient(to right, #2a5c3d, #3a7c5d);
            color: white;
            padding: 60px 0;
        }

        .cta-section .section-title {
            color: white;
        }

        .cta-section .section-title::after {
            background-color: #ffd166;
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* ========== ФУТЕР ========== */
        footer {
            background-color: #1a3c2b;
            color: #bbb;
            padding: 30px 0 15px;
            text-align: center;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        footer p {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .social-links {
            margin: 15px 0 20px;
        }

        .social-links a {
            color: #bbb;
            font-size: 1.3rem;
            margin: 0 10px;
            transition: color 0.3s;
            display: inline-block;
        }

        .social-links a:hover {
            color: #ff9a3d;
            transform: translateY(-2px);
        }

        .copyright {
            font-size: 0.8rem;
            padding-top: 15px;
            border-top: 1px solid #2a5c3d;
            margin-top: 15px;
            opacity: 0.7;
        }

        /* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
            
            .container {
                width: 95%;
                padding: 0 10px;
            }
            
            header {
                padding: 12px 0;
            }
            
            .logo-img {
                height: 40px;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text p {
                font-size: 0.7rem;
            }
            
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .nav-menu {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: linear-gradient(rgba(42, 92, 61, 0.98), rgba(42, 92, 61, 0.95));
                backdrop-filter: blur(10px);
                padding: 20px 0;
                display: none;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            
            .nav-menu.active {
                display: block;
            }
            
            .nav-menu ul {
                flex-direction: column;
                gap: 0;
            }
            
            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-menu li:last-child {
                border-bottom: none;
            }
            
            .nav-menu a {
                display: block;
                padding: 15px 20px;
                font-size: 1.1rem;
            }
            
            .hero {
                padding: 40px 0 30px;
            }
            
            .hero h2 {
                font-size: 1.7rem;
                margin-bottom: 15px;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 20px;
                padding: 0 10px;
            }
            
            section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 25px;
                padding: 0 10px;
            }
            
            .about-text {
                padding: 15px;
                font-size: 0.95rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .feature-card {
                padding: 20px 15px;
            }
            
            .feature-icon {
                font-size: 2rem;
                margin-bottom: 12px;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .achievement-item {
                padding: 15px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .achievement-icon {
                align-self: flex-start;
            }
            
            .gallery-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .btn-prev {
                left: 5px;
            }
            
            .btn-next {
                right: 5px;
            }
            
            .cta-section {
                padding: 40px 0;
            }
            
            .cta-section p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 55px;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .logo-text h1 {
                font-size: 1.1rem;
            }
            
            .logo-img {
                height: 35px;
            }
            
            .feature-card {
                padding: 15px 12px;
            }
            
            .achievement-item span {
                font-size: 0.95rem;
            }
            
            .gallery-slider {
                aspect-ratio: 4 / 3;
            }
        }

        /* ========== КОНТАКТЫ И ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ ========== */
        .contacts-section {
            margin-top: 40px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 12px;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .contact-person {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }

        .contact-person h4 {
            color: #2a5c3d;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .info-section {
            margin-top: 30px;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .contacts-grid {
                grid-template-columns: 1fr;
            }
            
            .contacts-section {
                padding: 15px;
            }
        }