        :root {
            --primary-cyan: #00d4ff;
            --primary-teal: #17a2b8;
            --secondary-color: #6c757d;
            --accent-color: #495057;
            --text-color: #e8eef3;
            --bg-dark: #0a0e12;
            --bg-dark-secondary: #1a1d23;
            --success-color: #48ca47;
            --warning-color: #ffc107;
            --privacy-color: #00d4ff;
        }

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

        body {
            font-family: 'Montserrat', Arial, sans-serif;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
            line-height: 1.7;
            color: var(--text-color);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated grid background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.1) 2px, transparent 2px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.1) 2px, transparent 2px);
            background-size: 50px 50px;
            animation: gridFloat 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gridFloat {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-20px) translateX(10px);
                opacity: 0.15;
            }
        }

        .main-container {
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.95) 0%, rgba(10, 14, 18, 0.9) 100%);
            border-radius: 0;
            box-shadow:
                0 25px 60px rgba(0, 212, 255, 0.15),
                inset 0 0 100px rgba(0, 212, 255, 0.05);
            margin: 0 auto;
            overflow: hidden;
            max-width: 1400px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(25px);
        }

        /* ===== HEADER SECTION WITH DARK TECH THEME ===== */
        .header-section {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, rgba(0, 212, 255, 0.1) 100%);
            color: white;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(0, 212, 255, 0.3);
        }

        .header-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(23, 162, 184, 0.12) 0%, transparent 50%);
            animation: headerGlow 8s ease-in-out infinite;
        }

        @keyframes headerGlow {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: translate(-10px, -10px) rotate(2deg);
                opacity: 0.8;
            }
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .company-info {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(23, 162, 184, 0.08) 100%);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow:
                0 15px 50px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .company-info:hover {
            transform: translateY(-8px);
            box-shadow:
                0 25px 70px rgba(0, 212, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.6);
        }

        .company-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid rgba(0, 212, 255, 0.5);
            box-shadow:
                0 15px 40px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(0, 212, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .company-logo:hover {
            transform: scale(1.1) rotate(360deg);
            border-color: rgba(0, 212, 255, 0.9);
            box-shadow:
                0 20px 60px rgba(0, 212, 255, 0.6),
                inset 0 0 30px rgba(0, 212, 255, 0.4);
        }

        .company-name {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            margin: 0;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 10px rgba(0, 212, 255, 0.5));
        }

        .company-tagline {
            font-size: 1rem;
             color: rgba(36, 35, 35, 0.85);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .page-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 50%, var(--primary-cyan) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShift 5s ease-in-out infinite;
            filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.6));
        }

        @keyframes titleShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .privacy-badge {
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            padding: 1.2rem 2rem;
            border-radius: 50px;
            font-size: 1.15rem;
            border: 2px solid rgba(0, 212, 255, 0.6);
            backdrop-filter: blur(20px);
            color: white !important;
            text-shadow:
                0 2px 8px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 212, 255, 0.5);
            font-weight: 600;
            box-shadow:
                0 10px 35px rgba(0, 212, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .privacy-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .privacy-badge:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow:
                0 15px 50px rgba(0, 212, 255, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .privacy-badge i {
            margin-right: 0.8rem;
            color: #4caf50;
            font-size: 1.3rem;
            text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                color: #4caf50;
                text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
            }
            50% {
                color: #66bb6a;
                text-shadow: 0 0 30px rgba(76, 175, 80, 1);
            }
        }

        /* ===== CONTENT SECTIONS ===== */
        .content-wrapper {
            padding: 3rem;
            background: rgba(10, 14, 18, 0.5);
        }

        .table-of-contents {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(23, 162, 184, 0.05) 100%);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-left: 6px solid var(--primary-cyan);
            box-shadow:
                0 15px 40px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 212, 255, 0.25);
        }

        .table-of-contents h3 {
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-align: center;
            filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.4));
        }

        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .table-of-contents li {
            margin: 0;
        }

        .table-of-contents a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            padding: 1rem 1.5rem;
            display: block;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(10, 14, 18, 0.8) 100%);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
            font-weight: 500;
            border: 1px solid rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .table-of-contents a:hover {
           color: white;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            transform: translateX(10px) translateY(-3px);
            box-shadow:
                0 8px 25px rgba(0, 212, 255, 0.4),
                0 0 30px rgba(0, 212, 255, 0.3);
            border-color: rgba(0, 212, 255, 0.5);
        }

        .section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(10, 14, 18, 0.85) 100%);
            border-radius: 20px;
            box-shadow:
                0 15px 50px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 212, 255, 0.25);
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow:
                0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 60px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.5);
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.2rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            filter: drop-shadow(0 2px 10px rgba(0, 212, 255, 0.4));
        }

        h2 i {
            font-size: 1.8rem;
            padding: 0.6rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            color: white;
            border-radius: 12px;
            box-shadow:
                0 8px 25px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            -webkit-text-fill-color: white;
            background-clip: padding-box;
        }

        h3 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-cyan);
            font-size: 1.3rem;
        }

        h4 {
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(23, 162, 184, 0.1) 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(15px);
        }

        .security-box {
            background: linear-gradient(135deg, rgba(72, 202, 71, 0.12) 0%, rgba(46, 204, 113, 0.08) 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid rgba(72, 202, 71, 0.4);
            box-shadow: 0 10px 30px rgba(72, 202, 71, 0.2);
            backdrop-filter: blur(15px);
        }

        .rights-box {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(23, 162, 184, 0.08) 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(15px);
        }

        ul {
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.8rem;
            position: relative;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
        }

        li::before {
            content: "\2192";
            position: absolute;
            left: -1.5rem;
            font-weight: bold;
            color: var(--primary-cyan);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
        }

        /* ===== FOOTER WITH TECH THEME ===== */
        .contact-footer {
            background: linear-gradient(135deg, rgba(10, 14, 18, 0.9) 0%, rgba(26, 29, 35, 0.85) 100%);
            color: white;
            padding: 4rem 0 2rem 0;
            position: relative;
            overflow: hidden;
            border-top: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow:
                0 -15px 50px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .contact-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.1) 2px, transparent 2px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.1) 2px, transparent 2px);
            background-size: 50px 50px;
            animation: gridFloat 20s ease-in-out infinite;
            pointer-events: none;
            opacity: 0.8;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 50%, var(--primary-cyan) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShift 5s ease-in-out infinite;
            filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.5));
        }

        .footer-subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(10, 14, 18, 0.85) 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 212, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow:
                0 15px 50px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.95) 0%, rgba(10, 14, 18, 0.9) 100%);
            box-shadow:
                0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 60px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.5);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            border-radius: 50%;
            display: inline-block;
            box-shadow:
                0 12px 35px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.15) rotate(360deg);
            box-shadow:
                0 18px 45px rgba(0, 212, 255, 0.6),
                0 0 60px rgba(0, 212, 255, 0.4);
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary-cyan);
        }

        .contact-info {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-link {
            color: white;
            text-decoration: none;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
            border: 2px solid transparent;
        }

        .contact-link:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(0, 212, 255, 0.6);
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
        }

        .home-button {
            background: linear-gradient(135deg, var(--success-color) 0%, #2ecc71 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(72, 202, 71, 0.4);
            border: 2px solid transparent;
        }

        .home-button:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(72, 202, 71, 0.6);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            border: 2px solid rgba(0, 212, 255, 0.5);
        }

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

        .back-to-top:hover {
            transform: translateY(-8px) scale(1.15);
            box-shadow: 0 15px 45px rgba(0, 212, 255, 0.7);
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .content-wrapper {
                padding: 2rem 1.5rem;
            }
            .section {
                padding: 1.5rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .table-of-contents ul {
                grid-template-columns: 1fr;
            }
            .company-info {
                padding: 1.5rem;
            }
            .company-logo {
                width: 70px;
                height: 70px;
            }
            .company-name {
                font-size: 1.3rem;
            }
            .footer-title {
                font-size: 2rem;
            }
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }

            /* Reduce animation intensity on mobile for performance */
            body::before,
            .contact-footer::before {
                opacity: 0.05;
                animation: none;
            }

            h2 {
                font-size: 1.8rem;
            }

            .contact-icon {
                font-size: 2.5rem;
                padding: 1.2rem;
            }
        }