* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #00d4ff;
            --secondary: #6a0dad;
            --accent: #ff006e;
            --dark: #0a0e27;
            --light: #f8f9fa;
            --text: #e0e0e0;
            --bg: #121212;
            --card-bg: #1e1e2e;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.7)), url('../img/21.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text);
            text-align: center;
            padding: 180px 20px 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.2) 0%, rgba(10, 14, 39, 0) 70%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }
        
        .hero p {
            font-size: 22px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.6);
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .section-title p {
            font-size: 18px;
            color: rgba(224, 224, 224, 0.7);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .about {
            background-color: var(--card-bg);
            position: relative;
        }
        
        
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: rgba(224, 224, 224, 0.8);
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(106, 13, 173, 0.3));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .about-image:hover:before {
            opacity: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .features {
            background-color: var(--bg);
            position: relative;
            overflow: hidden;
        }
        
        .features:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(106, 13, 173, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
            border-color: var(--primary);
        }
        
        .feature-card:hover:before {
            opacity: 1;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--light);
            font-size: 36px;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
        }
        
        .feature-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feature-card p {
            color: rgba(224, 224, 224, 0.8);
            font-size: 16px;
        }
        
        .pricing {
            background-color: var(--card-bg);
            position: relative;
        }
        
     
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .pricing-card {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured .pricing-header {
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }
        
        .pricing-header:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
        }
        
        .pricing-header h3 {
            font-size: 28px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            position: relative;
            display: inline-block;
        }
        
        .price span {
            font-size: 18px;
            font-weight: normal;
            position: absolute;
            top: 10px;
            left: -25px;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .pricing-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(224, 224, 224, 0.8);
            position: relative;
            padding-left: 30px;
        }
        
        .pricing-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .pricing-card.featured .pricing-list li:before {
            color: var(--accent);
        }
        
        .pricing-btn {
            display: block;
            width: 100%;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 15px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
        }
        
        .pricing-card.featured .pricing-btn {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
        }
        
        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.6);
        }
        
        .pricing-card.featured .pricing-btn:hover {
            box-shadow: 0 10px 25px rgba(255, 0, 110, 0.6);
        }
        
        .gallery {
            background-color: var(--bg);
            position: relative;
            overflow: hidden;
        }
        
        .gallery:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            height: 200px;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 14, 39, 0.9), rgba(10, 14, 39, 0.4));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: var(--text);
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .testimonials {
            background-color: var(--card-bg);
            position: relative;
        }
     
        
        .testimonials-container {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .testimonial-content {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 40px;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }
        
        .testimonial-content:before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.2;
            font-family: serif;
        }
        
        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 30px;
            color: rgba(224, 224, 224, 0.9);
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .author-info p {
            font-size: 14px;
            color: rgba(224, 224, 224, 0.7);
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-control.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        .advantages {
            background-color: var(--bg);
            position: relative;
            overflow: hidden;
        }
        
        .advantages:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .advantage-card {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(255, 0, 110, 0.2);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 212, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
            border-color: var(--accent);
        }
        
        .advantage-card:hover:before {
            opacity: 1;
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--light);
            font-size: 32px;
            box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
        }
        
        .advantage-card h3 {
            font-size: 22px;
            color: var(--accent);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .advantage-card p {
            color: rgba(224, 224, 224, 0.8);
            font-size: 16px;
        }
        
        .team {
            background-color: var(--card-bg);
            position: relative;
        }
        
      
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .team-member {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 212, 255, 0.2), rgba(106, 13, 173, 0.2));
            z-index: 1;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px;
        }
        
        .member-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .member-info p {
            font-size: 16px;
            color: var(--accent);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .member-bio {
            color: rgba(224, 224, 224, 0.8);
            font-size: 14px;
            line-height: 1.6;
        }
        
        .faq {
            background-color: var(--bg);
            position: relative;
            overflow: hidden;
        }
        
        .faq:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--text);
            font-size: 18px;
            position: relative;
        }
        
        .faq-question:after {
            content: "+";
            font-size: 24px;
            transition: transform 0.3s ease;
            color: var(--primary);
        }
        
        .faq-item.active .faq-question:after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 20px 20px;
            color: rgba(224, 224, 224, 0.8);
            line-height: 1.8;
        }
        
        .contact {
            background-color: var(--card-bg);
            position: relative;
        }
   
        
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 16px;
            background-color: rgba(10, 14, 39, 0.5);
            color: var(--text);
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        
        .form-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .form-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.6);
        }
        
        .form-btn:hover:before {
            left: 100%;
        }
        
        .disclaimer {
            background-color: var(--bg);
            padding: 40px 0;
            position: relative;
        }
        
 
        
        .disclaimer-content {
            background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 46, 0.7));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .disclaimer-content p {
            color: rgba(224, 224, 224, 0.7);
            font-size: 14px;
            line-height: 1.8;
        }
        
        footer {
            background-color: var(--dark);
            color: var(--text);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(224, 224, 224, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-links a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-links a:hover:before {
            width: 100%;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: rgba(224, 224, 224, 0.7);
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 18px;
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(224, 224, 224, 0.5);
            position: relative;
            z-index: 1;
        }
        
        .marquee {
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            color: var(--light);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 0) 10%, rgba(10, 14, 39, 0) 90%, rgba(10, 14, 39, 0.7) 100%);
            z-index: 1;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
            position: relative;
            z-index: 2;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(30, 30, 46, 0.95), rgba(10, 14, 39, 0.95));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.3s ease;
        }
        
        .cookie-popup.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-content p {
            margin-bottom: 10px;
            font-size: 14px;
            color: rgba(224, 224, 224, 0.8);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }
        
        .cookie-accept {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .success-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(30, 30, 46, 0.95), rgba(10, 14, 39, 0.95));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 40px;
            text-align: center;
            z-index: 1002;
            display: none;
            max-width: 400px;
            width: 90%;
        }
        
        .success-popup.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .success-popup h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .success-popup p {
            margin-bottom: 25px;
            color: rgba(224, 224, 224, 0.8);
            line-height: 1.6;
        }
        
        .success-close {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
        }
        
        .success-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero {
                padding: 150px 20px 100px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-info p {
                justify-content: center;
            }
            
            .cookie-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }

