        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

        :root {
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #f093fb;
            --text-color: #333;
            --bg-color: #ffffff;
            --surface-color: rgba(255, 255, 255, 0.98);
            --border-color: rgba(102, 126, 234, 0.2);
        }

        [data-theme="dark"] {
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #f093fb;
            --text-color: #ffffff;
            --bg-color: #1a1a1a;
            --surface-color: rgba(30, 30, 30, 0.95);
            --border-color: rgba(102, 126, 234, 0.3);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
            min-height: 100vh;
            padding: 0;
            margin: 0;
            position: relative;
            overflow-x: hidden;
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        [data-theme="dark"] body {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--surface-color);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo img {
            width: 200px;
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 600px) {
            .logo img {
                width: 90px;
            }
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .theme-toggle {
            background: var(--surface-color);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 8px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            color: var(--text-color);
        }

        .theme-toggle:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--surface-color);
            z-index: 999;
            padding: 80px 20px 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .main-content {
            margin-top: 80px;
            padding: 20px;
        }

        .moving-circles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        [data-theme="dark"] .moving-circles {
            opacity: 1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2), transparent);
            animation: moveCircles 20s infinite linear;
        }

        .circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
            animation-direction: reverse;
        }

        .circle:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 30%;
            animation-delay: 10s;
        }

        .circle:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 30%;
            right: 30%;
            animation-delay: 15s;
            animation-direction: reverse;
        }

        @keyframes moveCircles {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, -50px) rotate(90deg); }
            50% { transform: translate(-50px, 100px) rotate(180deg); }
            75% { transform: translate(-100px, -100px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particle-float 15s infinite linear;
            z-index: -1;
        }

        @keyframes particle-float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        .shape {
            position: fixed;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float-shapes 12s infinite ease-in-out;
            z-index: -1;
        }

        .shape:nth-child(10) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape:nth-child(11) { width: 60px; height: 60px; top: 60%; right: 15%; animation-delay: 2s; }
        .shape:nth-child(12) { width: 100px; height: 100px; bottom: 20%; left: 20%; animation-delay: 4s; }

        @keyframes float-shapes {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }

        .sparkle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #fff 0%, #667eea 70%, transparent 100%);
            border-radius: 50%;
            animation: sparkle 3s infinite ease-in-out;
            z-index: 1;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
            50% { opacity: 1; transform: scale(1) rotate(180deg); }
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--surface-color);
            backdrop-filter: blur(25px);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }

        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .header h1 {
            font-family: 'Orbitron', monospace;
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e3c72, #2a5298, #667eea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            animation: title-glow 4s ease-in-out infinite alternate;
        }

        @keyframes title-glow {
            from { filter: drop-shadow(0 0 15px rgba(30, 60, 114, 0.6)); }
            to { filter: drop-shadow(0 0 25px rgba(102, 126, 234, 0.9)); }
        }

        .header p {
            color: #555;
            font-size: 1.2rem;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .banner-ad {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .banner-content {
            position: relative;
            z-index: 1;
        }

        .banner-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .banner-text {
            color: var(--text-color);
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .banner-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .form-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(42, 82, 152, 0.05));
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .form-group label i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 15px;
            font-size: 1rem;
            background: var(--bg-color);
            color: var(--text-color);
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
            font-family: 'Courier New', monospace;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            margin-right: 15px;
            margin-bottom: 15px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .btn.secondary {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
        }

        .result-section {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(102, 126, 234, 0.05));
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
            border: 2px solid rgba(30, 60, 114, 0.1);
            position: relative;
        }

        .result-section h3 {
            color: #1e3c72;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }

        .output-display {
            background: rgb(255 255 255 / 90%);
            border: 2px solid rgba(102, 126, 234, 0.2);
            border-radius: 12px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            margin-bottom: 20px;
            position: relative;
            min-height: 200px;
            white-space: pre-wrap;
            word-break: break-all;
            color: var(--text-color);
        }

        [data-theme="dark"] .output-display {
            background: rgb(0 0 0 / 90%);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .stats {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(102, 126, 234, 0.1);
            padding: 15px 20px;
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 120px;
            position: relative;
        }

        .duplicate-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 12px;
            transform: rotate(45deg);
            box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
            z-index: 10;
            white-space: nowrap;
            animation: badge-pulse 2s infinite;
        }

        @keyframes badge-pulse {
            0%, 100% { transform: rotate(45deg) scale(1); }
            50% { transform: rotate(45deg) scale(1.1); }
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .status {
            padding: 15px 20px;
            border-radius: 12px;
            margin: 15px 0;
            display: none;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .status.success {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
        }

        .status.error {
            background: linear-gradient(135deg, #f44336, #d32f2f);
            color: white;
        }

        /* Enhanced Logo Animations */
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes orbit1 {
            0% { transform: translateX(-50%) rotate(0deg) translateX(100px) rotate(0deg); }
            100% { transform: translateX(-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
        }

        @keyframes orbit2 {
            0% { transform: translateY(-50%) rotate(0deg) translateY(125px) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg) translateY(125px) rotate(-360deg); }
        }

        @keyframes orbit3 {
            0% { transform: translateX(-50%) rotate(0deg) translateX(150px) rotate(0deg); }
            100% { transform: translateX(-50%) rotate(360deg) translateX(150px) rotate(-360deg); }
        }

        @keyframes orbit4 {
            0% { transform: translateY(-50%) rotate(0deg) translateY(110px) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg) translateY(110px) rotate(-360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
        }

        @keyframes logoFloat1 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        @keyframes logoFloat2 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(-5deg); }
        }

        @keyframes connectorPulse {
            0%, 100% { opacity: 0.6; transform: scaleX(1); }
            50% { opacity: 1; transform: scaleX(1.2); }
        }

        @keyframes connectorDot {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.5); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            padding: 60px 0;
            margin: 40px 0;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .faq-header p {
            color: var(--text-color);
            font-size: 1.2rem;
            opacity: 0.8;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface-color);
            border-radius: 15px;
            border: 2px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
            border-color: var(--primary-color);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
        }

        .faq-question i:first-child {
            color: var(--primary-color);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .faq-question h3 {
            color: var(--text-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            flex: 1;
        }

        .faq-toggle {
            color: var(--primary-color);
            font-size: 1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: var(--bg-color);
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            opacity: 0.8;
        }

        .faq-answer code {
            background: rgba(102, 126, 234, 0.1);
            color: var(--primary-color);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            word-break: break-all;
        }

        /* Footer */
        .footer {
            background: var(--surface-color);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-section p, .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            line-height: 1.6;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
            opacity: 1;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            text-align: center;
            color: var(--text-color);
            opacity: 0.6;
        }

        .hashtags {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .hashtag {
            background: rgba(102, 126, 234, 0.1);
            color: var(--primary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .hashtag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Access Gate */
        #accessGateOverlay {
            position: fixed;
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(20, 34, 74, 0.95);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
        }

        #accessGateBox {
            background: #fff;
            color: #333;
            border-radius: 18px;
            box-shadow: 0 4px 26px #667eea99;
            padding: 36px 32px;
            max-width: 660px;
            width: 95%;
            text-align: center;
        }

        #accessGateBox img {
            width: 320px;
            height: 100px;
            border-radius: 24px;
            margin-bottom: 18px;
        }

        #accessGateBox h2 {
            font-size: 1.65rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        #accessGateBox label {
            display: block;
            margin: 20px 0 8px;
            color: #764ba2;
            font-weight: 600;
        }

        #accessGateBox input[type=password] {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            border-radius: 8px;
            border: 1.5px solid #667eea;
            outline: none;
            margin-bottom: 8px;
        }

        #accessGateBox button {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 22px;
            margin-top: 10px;
            cursor: pointer;
            font-size: 1.08rem;
        }

        #accessGateBox .code-link {
            display: block;
            margin: 15px 0 0 0;
            color: #667eea;
            text-decoration: underline;
            font-weight: 500;
        }

        #accessGateBox .err {
            color: #f44336;
            font-weight: 600;
            font-size: 0.97rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            .container {
                padding: 30px 20px;
                margin: 10px;
            }

            .header h1 {
                font-size: 2.5rem;
            }

            .form-section {
                padding: 20px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                margin-right: 0;
            }

            .stats {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .dual-logo-container {
                gap: 20px !important;
            }

            #mainLogo1, #mainLogo2 {
                width: 80px !important;
                height: 80px !important;
            }

            .decoration-ring.ring-1 { width: 150px !important; height: 150px !important; }
            .decoration-ring.ring-2 { width: 200px !important; height: 200px !important; }
            .decoration-ring.ring-3 { width: 250px !important; height: 250px !important; }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .faq-header h2 {
                font-size: 2rem;
                flex-direction: column;
                gap: 10px;
            }
        }