        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            .modal-content {
                padding: 40px 30px;
                width: 95%;
            }

            .modal-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .form-input {
                padding: 14px 16px;
                font-size: 14px;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: #FFFFFF;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            z-index: 1000;
            padding: 1rem 5%;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
        }

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

        .logo {
            width: 78px;
            height: 79px;
            /*background: #FFD700;*/
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #006837;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 53px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #FFFFFF;
            font-size: 18px;
            line-height: 30px;
            transition: opacity 0.3s;
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 722px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
        }

        .hero-wrapper {
            position: relative;
            width: 100%;
            max-width: 1440px;
            height: 100%;
            margin: 0 auto;
        }

        .hero img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
            z-index: 2;
        }

        .hero-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 82px;
            width: 100%;
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .hero-text {
            max-width: 607px;
            color: #FFFFFF;
        }

        .hero-text h1 {
            font-size: 42px;
            line-height: 51px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-text p {
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            margin-bottom: 59px;
            max-width: 531px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 20px 42px;
            border: 1px solid #FFFFFF;
            border-radius: 50px;
            color: #FFFFFF;
            text-decoration: none;
            font-size: 20px;
            line-height: 30px;
            transition: all 0.3s;
            max-width: 400px;
            text-align: center;
            line-height: 1.2;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Section Styles */
        .section-beige {
            background: #F5F2EF;
            padding: 93px 5% 100px;
        }

        .section-white {
            background: #FFFFFF;
            padding: 93px 5% 100px;
        }

        .section-title {
            font-size: 42px;
            line-height: 51px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #000000;
        }

        .section-subtitle {
            font-size: 24px;
            line-height: 32px;
            font-weight: 400;
            text-align: center;
            color: #000000;
            margin-bottom: 10px;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 72px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .benefit-card {
            text-align: center;
        }

        .benefit-icon {
            max-width: 150px;
            height: 100px;
            margin: 0 auto 35px;
            /*background: #BBDFF7;*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .benefit-title {
            font-size: 20px;
            line-height: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000000;
        }

        .benefit-description {
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            color: #000000;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 75px;
            max-width: 1280px;
            margin: 0 auto 60px;
        }

        .product-card {
            text-align: center;
        }

        .product-image img {
            width: 378px;
            height: 378px;
            margin: 0 auto 20px;
            /*background: #E5E5E5;*/
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .product-description {
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            color: #000000;
            max-width: 469px;
            margin: 0 auto;
        }

        /* CTA Buttons */
        .cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 20px 55px;
            border: 1px solid #000000;
            border-radius: 50px;
            color: #000000;
            text-decoration: none;
            font-size: 22px;
            line-height: 30px;
            transition: all 0.3s;
        }

        .cta-secondary:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .cta-center {
            text-align: center;
            margin-top: 40px;
        }

        /* Team Section */
        .team-section {
            max-width: 890px;
            margin: 0 auto;
            text-align: center;
        }

        .team-image img {
            width: 100%;
            max-width: 949px;
            height: 587px;
            margin: 60px auto 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
			border-radius: 10px;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, #BBDFF7 0%, #E0F0FD 100%);
            padding: 82px 5%;
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            width: 140px;
            height: 141px;
            /*background: #FFD700;*/
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 2rem;
            color: #006837;
            border-radius: 8px;
        }

        .footer-contact {
            text-align: left;
        }

        .footer-contact h3 {
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .footer-links {
            text-align: right;
        }

        .footer-links a {
            display: block;
            font-size: 16px;
            line-height: 22px;
            color: #000000;
            text-decoration: none;
            margin-bottom: 5px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

	footer .footer-contact a {
    		text-decoration: none;
    		color: #2d4156;
	}

	footer a:hover {
	    color: #1c8e8f;
	}

        /* Modal/Popup */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 60px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #666;
            line-height: 1;
            padding: 5px 10px;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: #000;
        }

        .modal-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: left;
            color: #000;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            border: none;
            background: #F5F5F5;
            border-radius: 10px;
            transition: background 0.3s;
        }

        .form-input:focus {
            outline: none;
            background: #EFEFEF;
        }

        .form-input::placeholder {
            color: #999;
        }

        .privacy-notice {
            font-size: 14px;
            line-height: 20px;
            color: #666;
            margin: 20px 0;
        }

        .privacy-notice a {
            color: #000;
            text-decoration: underline;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 20px 0;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 14px;
            line-height: 20px;
            color: #666;
            cursor: pointer;
        }

        .form-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            border: 1px solid #000;
            border-radius: 50px;
            background: white;
            color: #000;
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .form-submit:hover {
            background: #000;
            color: white;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 100px;
                right: -100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                width: 100%;
                padding: 2rem;
                transition: right 0.3s;
                gap: 20px;
            }

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

            .menu-toggle {
                display: flex;
            }

            .hero {
                height: auto;
                min-height: 500px;
                padding: 150px 20px 50px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-text h1 {
                font-size: 28px;
                line-height: 36px;
            }

            .hero-text p {
                font-size: 16px;
                line-height: 24px;
            }

            .cta-button {
                font-size: 16px;
                padding: 15px 30px;
            }

            .section-title {
                font-size: 28px;
                line-height: 36px;
            }

            .section-subtitle {
                font-size: 18px;
                line-height: 26px;
            }

            .benefits-grid,
            .products-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-image {
                width: 100%;
                max-width: 320px;
                height: 320px;
            }

            .team-image img {
                height: auto;
				width: 100%;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-contact,
            .footer-links {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 24px;
                line-height: 30px;
            }

            .section-title {
                font-size: 24px;
                line-height: 32px;
            }

            .benefit-description,
            .product-description {
                font-size: 16px;
                line-height: 24px;
            }
        }
