:root {
            --primary: #0a0e27;
            --secondary: #1e3a8a;
            --accent: #00d4ff;
            --light: #f0f9ff;
            --dark: #020617;
            --text: #e2e8f0;
            --gradient: linear-gradient(135deg, #1e3a8a, #0ea5e9);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        body {
            background: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .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: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--primary);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/02.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }
        
        .hero-content {
            z-index: 2;
            max-width: 700px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--light);
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: rgba(30, 58, 138, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        
        .service-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-card p {
            margin-bottom: 20px;
            color: var(--light);
        }
        
        /* Why Us Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(30, 58, 138, 0.1);
            border-radius: 15px;
            transition: all 0.3s;
        }
        
        .feature-item:hover {
            background: rgba(30, 58, 138, 0.2);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        
        /* Testimonials Section */
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background: rgba(30, 58, 138, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--accent);
        }
        
        /* Process Section */
        .process-timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: var(--gradient);
        }
        
        .process-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .process-item:nth-child(odd) {
            text-align: right;
            padding-right: 50%;
        }
        
        .process-item:nth-child(even) {
            text-align: left;
            padding-left: 50%;
        }
        
        .process-content {
            background: rgba(30, 58, 138, 0.1);
            border-radius: 15px;
            padding: 25px;
            width: 80%;
            position: relative;
        }
        
        .process-item:nth-child(odd) .process-content {
            margin-left: auto;
        }
        
        .process-number {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }
        
        .process-item:nth-child(odd) .process-number {
            right: -20px;
        }
        
        .process-item:nth-child(even) .process-number {
            left: -20px;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(30, 58, 138, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(30, 58, 138, 0.2);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 20px;
            display: none;
            color: var(--light);
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            background: rgba(30, 58, 138, 0.1);
            border-radius: 15px;
            padding: 30px 20px;
            transition: all 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid var(--accent);
        }
        
        .team-member h3 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .team-member p {
            color: var(--light);
        }
        
        /* Marquee */
        .marquee {
            background: var(--secondary);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
            color: var(--accent);
            font-weight: 600;
        }
        
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: var(--dark);
            padding: 15px 0;
            text-align: center;
            color: var(--light);
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary);
            color: var(--text);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: var(--gradient);
            color: white;
        }
        
        .cookie-reject {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: var(--primary);
            border-radius: 15px;
            padding: 40px;
            max-width: 700px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--accent);
        }
        
        .modal h2 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .modal ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .modal li {
            margin-bottom: 10px;
            color: var(--light);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-item {
                padding-left: 70px !important;
                text-align: left !important;
            }
            
            .process-item:nth-child(odd) .process-content {
                margin-left: 0;
            }
            
            .process-item:nth-child(odd) .process-number,
            .process-item:nth-child(even) .process-number {
                left: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
        }

