        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* 
            ЗАМЕНИТЬ ТЕКСТОВЫЙ ЛОГОТИП НА ИЗОБРАЖЕНИЕ:
            В HTML замените <div class="logo">THREENETE</div> на:
            <div class="logo"><img src="logo.png" alt="Logo" style="height: 40px;"></div>
            */
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            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 0%, #764ba2 100%);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            /* 
            ДОБАВИТЬ ФОНОВОЕ ИЗОБРАЖЕНИЕ:
            Раскомментируйте строку ниже и замените 'your-image.jpg' на путь к вашему изображению
            */
            /* background-image: url('your-image.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: #999;
            margin-bottom: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: #0a0a0a;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
            cursor: pointer;
            /* 
            ДОБАВИТЬ ФОНОВОЕ ИЗОБРАЖЕНИЕ ДЛЯ КАРТОЧКИ УСЛУГИ:
            Раскомментируйте строки ниже и замените 'service-bg.jpg' на путь к изображению
            */
            /* background-image: url('service-bg.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: overlay; */
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
            /* 
            ЗАМЕНИТЬ ЭМОДЗИ НА ИКОНКУ-ИЗОБРАЖЕНИЕ:
            Раскомментируйте строки ниже и замените 'icon.png' на путь к вашей иконке
            А эмодзи в HTML удалите и добавьте <img> внутри .service-icon
            */
            /* background-image: url('icon.png'); */
            /* background-size: 30px 30px; */
            /* background-repeat: no-repeat; */
            /* background-position: center; */
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #999;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Equipment Section */
        .equipment {
            padding: 120px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .equipment-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
        }

        .equipment-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .equipment-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .equipment-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .equipment-card p {
            color: #999;
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery {
            padding: 120px 0;
            background: #0a0a0a;
            overflow: hidden;
        }

        .gallery-slider {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 80px;
        }

        .gallery-container {
            overflow: hidden;
            max-height: 70vh;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 0;
        }

        .gallery-slide {
            min-width: 100%;
            height: auto;
            min-height: 200px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-slide img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            object-position: center;
            /* Центрируем изображение */
            background: #000;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-slide img.loaded {
            opacity: 1;
        }

        /* Image Placeholder/Loader */
        .image-placeholder {
            position: relative;
            width: 100%;
            height: 700px;
            max-width: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-loader {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(102, 126, 234, 0.3);
            border-top: 3px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .gallery-prev,
        .gallery-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(102, 126, 234, 0.8);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-prev:hover,
        .gallery-next:hover {
            background: rgba(102, 126, 234, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-prev {
            left: 0;
        }

        .gallery-next {
            right: 0;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .gallery {
                padding: 60px 0 !important;
            }

            .gallery-slider {
                padding: 0 50px !important;
            }

            .gallery-slide img,
            .image-placeholder {
                width: calc(100vw - 100px) !important;
                height: 600px !important;
                max-width: 500px !important;
                max-height: none !important;
            }

            .gallery-prev,
            .gallery-next {
                width: 40px !important;
                height: 40px !important;
                font-size: 24px !important;
            }
        }

        /* Small phones */
        @media (max-width: 430px) {
            .gallery-slider {
                padding: 0 45px !important;
            }

            .gallery-slide img,
            .image-placeholder {
                width: calc(100vw - 90px) !important;
                height: 500px !important;
            }

            .gallery-prev,
            .gallery-next {
                width: 35px !important;
                height: 35px !important;
                font-size: 20px !important;
            }
        }

        /* Reviews Header */
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .telegram-reviews-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .telegram-reviews-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .telegram-reviews-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* Gift Certificate Section */
        .gift-section {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            /* 
            ДОБАВИТЬ ФОНОВОЕ ИЗОБРАЖЕНИЕ ДЛЯ СЕКЦИИ ПОДАРКОВ:
            Раскомментируйте строки ниже
            */
            /* background-image: url('gift-bg.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: overlay; */
        }

        .gift-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .gift-content h2 {
            font-size: 48px;
            margin-bottom: 30px;
        }

        .gift-content p {
            font-size: 18px;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .gift-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .gift-option {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s;
        }

        .gift-option:hover {
            border-color: #667eea;
            transform: scale(1.05);
        }

        .gift-option h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #667eea;
        }

        /* Reviews Section */
        .reviews {
            padding: 120px 0;
            background: #0a0a0a;
        }

        .reviews-widget {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }

        .contact-form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-form-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .contact-form-content>p {
            font-size: 18px;
            color: #999;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            padding: 18px 45px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        .form-note {
            font-size: 13px;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

        .contact-socials {
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .contact-socials h3 {
            font-size: 28px;
            text-align: center;
            margin-bottom: 20px;
        }

        .contact-socials p {
            font-size: 16px;
            color: #999;
            text-align: center;
            margin-bottom: 30px;
        }

        .social-contact-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .social-contact-link {
            display: flex;
            align-items: center;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s;
            gap: 20px;
        }

        .social-contact-link:hover {
            background: rgba(102, 126, 234, 0.1);
            border-color: #667eea;
            transform: translateX(10px);
        }

        .social-contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .social-contact-icon svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        .telegram-icon {
            background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
        }

        .vk-icon {
            background: linear-gradient(135deg, #5181B8 0%, #4872A3 100%);
        }

        .instagram-icon {
            background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
        }

        .social-contact-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .social-contact-name {
            font-size: 18px;
            font-weight: 600;
        }

        .social-contact-handle {
            font-size: 14px;
            color: #999;
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: #0a0a0a;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 48px;
            margin-bottom: 30px;
        }

        .about-text p {
            font-size: 18px;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(102, 126, 234, 0.5);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: #999;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 500px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
        }

        .about-image::before {
            position: absolute;
            font-size: 120px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.3;
        }

        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-slide {
                height: 300px;
            }

            .gallery-prev,
            .gallery-next {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }

        /* Footer */
        footer {
            background: #050505;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #666;
        }

        /* Map Section */
        .map-section {
            margin-top: 60px;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .map-container iframe {
            display: block;
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 20px;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-3px);
        }

        .social-links svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                height: 100vh;
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 32px;
            }

            .services {
                padding: 80px 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 30px;
            }

            .about {
                padding: 80px 0;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text h2 {
                font-size: 32px;
            }

            .about-text p {
                font-size: 16px;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-item {
                padding: 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 14px;
            }

            .about-image {
                height: 300px;
            }

            .equipment {
                padding: 80px 0;
            }

            .equipment-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .equipment-card {
                padding: 30px;
            }

            .gallery {
                padding: 80px 0;
            }

            .gallery-slider {
                padding: 0 50px;
            }

            .gallery-slider {
                padding: 0 60px;
            }

            .gallery-slide {
                height: 500px;
            }

            .gallery-slide img {
                width: 500px;
                height: 500px;
            }

            .gallery-prev,
            .gallery-next {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }

            .gift-section {
                padding: 80px 0;
            }

            .gift-content h2 {
                font-size: 32px;
            }

            .gift-content p {
                font-size: 16px;
            }

            .gift-options {
                grid-template-columns: 1fr;
                gap: 20px;
                margin: 30px 0;
            }

            .gift-option {
                padding: 25px;
            }

            .reviews {
                padding: 80px 0;
            }

            .contact-form-section {
                padding: 80px 0;
            }

            .contact-form-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-content h2 {
                font-size: 32px;
            }

            .contact-form-content>p {
                font-size: 16px;
            }

            .contact-form-image {
                height: auto;
                padding: 40px 0;
            }

            .form-decoration {
                padding: 40px 30px;
            }

            .decoration-circle {
                width: 100px;
                height: 100px;
                font-size: 50px;
            }

            .decoration-text h3 {
                font-size: 24px;
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .map-section h3 {
                font-size: 24px;
            }

            .map-container iframe {
                height: 400px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .service-card {
                padding: 25px;
            }

            .service-card h3 {
                font-size: 20px;
            }

            .service-price {
                font-size: 20px;
            }

            .about-text h2 {
                font-size: 28px;
            }

            .stat-number {
                font-size: 32px;
            }

            .equipment-card {
                padding: 25px;
            }

            .equipment-icon {
                font-size: 40px;
            }

            .gallery-slider {
                padding: 0 40px;
            }

            .gallery-slide {
                height: 200px;
            }

            .gallery-prev,
            .gallery-next {
                width: 30px;
                height: 30px;
                font-size: 18px;
            }

            .gift-content h2 {
                font-size: 28px;
            }

            .gift-option h4 {
                font-size: 20px;
            }

            .map-container iframe {
                height: 300px;
            }

            .logo {
                font-size: 24px;
            }

            nav {
                padding: 15px 0;
            }

            .contact-form-content h2 {
                font-size: 28px;
            }

            .form-group input,
            .form-group textarea {
                padding: 15px 18px;
                font-size: 14px;
            }

            .submit-button {
                padding: 15px 35px;
                font-size: 14px;
            }

            .decoration-circle {
                width: 80px;
                height: 80px;
                font-size: 40px;
            }

            .decoration-text h3 {
                font-size: 20px;
            }

            .decoration-text p {
                font-size: 14px;
            }

            .contact-socials {
                padding: 30px 20px;
            }

            .contact-socials h3 {
                font-size: 20px;
            }

            .social-contact-link {
                padding: 15px;
            }

            .social-contact-icon {
                width: 40px;
                height: 40px;
            }

            .social-contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .social-contact-name {
                font-size: 15px;
            }

            .social-contact-handle {
                font-size: 12px;
            }
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(102, 126, 234, 0.5);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }