        :root {
            --bg-dark: #050505;
            --bg-blue: #020617;
            --accent-cyan: #a9dfff;
            --accent-blue: #2563EB;
            --text-light: #94A3B8;
        }
a {
  color: #00e5ff !important;
}
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 50px;
            justify-content: center;
        }

        @media (max-width: 1023px) {
            .gallery-grid {
                grid-template-columns: repeat(2, minmax(240px, 1fr));
            }
        }

        @media (max-width: 639px) {
            .gallery-grid {
                grid-template-columns: minmax(220px, 1fr);
            }
        }

        .gallery-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
        }

        .gallery-media {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 16px;
            border: 1px solid #1f2937;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.7), rgba(15, 23, 42, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .gallery-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-media img {
            transform: scale(1.05);
        }

        .case-caption {
            color: #e5e7eb;
            font-size: 14px;
            line-height: 1.4;
            text-align: center;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {           
            background-color: var(--bg-dark);
            color: #FFFFFF;
            overflow-x: hidden;
        }
       
		#sp-header {
			border-bottom: 1px solid rgba(255,255,255,0.1);
	}   
select:not(.form-select):not(.form-control) {
  color: #fff;
}
        /* Custom animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Glow effects */
        .glow-on-hover {
            transition: all 0.3s ease;
        }
        
        .glow-on-hover:hover {
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
        }
        
        .border-glow {
            transition: all 0.3s ease;
        }
        
        .border-glow:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
        }
        
        /* Backdrop blur */
        .glass-effect {
            background: rgba(5, 5, 5, 0.7);
            backdrop-filter: blur(10px);
        }
        
        /* Hero slider */
        .hero-slide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        
        /* Slider dots */
        .hero-dot {
            transition: background-color 0.3s ease;
        }
        
        .hero-dot.active {
            background-color: var(--accent-cyan) !important;
        }
/* Красивый CSS для таблиц GDPR */
.table-container {
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
}

.gdpr-table th {
    background: #ccc;
    color: #111;
    padding: 18px 20px;
    text-align: left;
}

.gdpr-table td {
    padding: 10px;
    vertical-align: top;
    color: #111;
    background: #f9f9f9;
}

.gdpr-table tbody tr {
    transition: all 0.3s ease;
}

.gdpr-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.gdpr-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gdpr-table {
        font-size: 0.85em;
    }
    
    .gdpr-table th,
    .gdpr-table td {
        padding: 12px 15px;
    }
    
    .gdpr-table thead {
        display: none;
    }
    
    .gdpr-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 15px;
        
    }
    
    .gdpr-table td {
        border: none;
        padding: 8px 0;
        display: block;
        text-align: right;
        position: relative;
        padding-left: 50%;
    }
    
    .gdpr-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        font-weight: 600;
        color: #667eea;
    }
}        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Sticky WhatsApp Button (Mobile) */
        .sticky-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
        }
         .burger-icon > span {
          background-color: #fff;
}
        @media (max-width: 600px) {
        .logo-image {
         height: 50px!important;
        }
          ul.menu > li span:hover {
            color: #252525!important;
}
}
        @media (max-width: 1023px) {
            .sticky-whatsapp {
                display: flex;
            }
        }
        
        .sticky-whatsapp a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s infinite;
        }
        
        .sticky-whatsapp a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
            }
        }
		@media (min-width: 1024px) {
  #certificates {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  #gallery.gallery-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
