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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

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

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            position: relative;
            z-index: 1001;
        }

        .hamburger {
            display: block;
            position: relative;
            width: 25px;
            height: 20px;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #fff;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 8px;
        }

        .hamburger span:nth-child(3) {
            top: 16px;
        }

        .mobile-menu-toggle.active .hamburger span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }

        .mobile-menu-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .mobile-menu-toggle.active .hamburger span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: right 0.3s ease;
            padding-top: 80px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            list-style: none;
            padding: 2rem 0;
        }

        .mobile-menu-links li {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-menu.active .mobile-menu-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-menu-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
            width: 200px;
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-links a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, rgba(10, 10, 10, 1) 70%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.8)); }
        }

        .hero h2 {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #b0b0b0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Services Section */
        .services {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .service-card p {
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

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

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: #b0b0b0;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .feature-item h4 {
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .contact-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .full-width {
            grid-column: 1 / -1;
        }
        
        /* Стили для текста согласия на обработку персональных данных */
        .contact-form p {
            font-size: 0.8rem; /* Уменьшенный размер шрифта */
            color: #888; /* Серый цвет текста */
            line-height: 1.4;
            margin-top: 1rem;
            text-align: center;
        }

        .contact-form p a {
            color: #667eea; /* Цвет ссылки - синий градиент */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-form p a:hover {
            color: #764ba2; /* Цвет ссылки при наведении */
            text-decoration: none;
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .contact-form p {
                font-size: 0.75rem; /* Еще меньший размер на мобильных */
            }
        }
        
        
        
        

        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom {
            text-align: center;
            color: #b0b0b0;
        }
        
        
        .footer-bottom a:link {
            color: #667eea; 
            text-decoration: none; 
        }

        .footer-bottom a:hover {
            color: #764ba2;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .form-group {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
      /* Social Icons Styles */
.social-links {
    display: flex;
    gap: 15px;
    margin-left: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    position: relative;
    color: #A0A0A0;
    text-decoration: none !important; /* Важно: убираем подчеркивание */
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
    color: white;
    text-decoration: none !important; /* Убираем подчеркивание при наведении */
}

/* Убираем подчеркивание для всех состояний */
.social-link:focus, 
.social-link:active {
    text-decoration: none !important;
}

/* Остальные стили остаются без изменений */
.social-link.telegram:hover { color: #0088cc; }
.social-link.phone:hover { color: #d572e7; }
.social-link.whatsapp:hover { color: #25D366; }
.social-link.email:hover { color: #EA4335; }

.social-link i {
    font-size: 18px;
}

/* Мобильная версия */
.mobile-social-links {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.mobile-social-link {
    color: #A0A0A0;
    font-size: 22px;
    transition: all 0.25s ease;
    text-decoration: none !important; /* Убираем подчеркивание */
}

.mobile-social-link:hover {
    color: white;
    transform: scale(1.1);
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
    .mobile-social-links {
        display: flex;
    }
}

.social-link::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.social-link:hover::after {
    opacity: 1;
}
 
  
        /* Кнопка "Наверх" */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: #764ba2;
            transform: translateY(-2px);
        }
        
        /* Стили для всплывающего окна с cookies */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            padding: 20px;
            max-width: 600px;
            width: 90%;
            z-index: 10000;
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            display: none;
        }

        .cookie-popup.show {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .cookie-popup-content {
            margin-bottom: 15px;
            color: #333;
        }

        .cookie-popup-button {
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }

        .cookie-popup-button:hover {
            background: #0056b3;
        }

        .cookie-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: none;
        }

        .cookie-popup-overlay.show {
            display: block;
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .cookie-popup {
                bottom: 10px;
                padding: 15px;
                font-size: 13px;
            }
            
            .cookie-popup-button {
                padding: 8px 16px;
                font-size: 13px;
            }
        }