  :root {
            /* Theme Color: #34A2B3 (Teal) */
            --primary: #34A2B3;
            --primary-dark: #2a8290;
            --primary-light: #e6fcfd;
            
            --secondary: #0ea5e9;
            --accent: #f59e0b;
            
            --bg-body: #ffffff;
            --bg-alt: #f0f9fa;
            --text-main: #334155;
            --text-light: #64748b;
            --white: #ffffff;
            
            /* Shadows & Effects */
            --shadow-sm: 0 4px 6px -1px rgba(52, 162, 179, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(52, 162, 179, 0.1), 0 8px 10px -6px rgba(52, 162, 179, 0.05);
            --shadow-glow: 0 10px 30px rgba(52, 162, 179, 0.15);
            
            --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-text: linear-gradient(135deg, #0f766e, var(--primary));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- Animations --- */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes blobMove {
            0% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
            100% { transform: translate(0, 0) scale(1); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Utilities --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
        
        /* Reduced padding for mobile will be handled in media queries */
        .section-padding { padding: 100px 0; position: relative; overflow: hidden; }
        
        .bg-svg-wrapper {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* --- Navigation --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1002; /* Above hamburger */
        }
        .logo i { color: var(--primary); font-size: 26px; }

        .nav-links { 
            display: flex; 
            gap: 30px; 
            list-style: none; 
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 16px;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--primary); }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-main);
            z-index: 1002;
        }

        .btn-primary {
            padding: 12px 30px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(52, 162, 179, 0.3); }
        
        .btn-outline {
            padding: 12px 30px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline:hover { background: var(--primary); color: white; transform: translateY(-3px); }

        /* --- Hero Section --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
            position: relative;
        }

        .blob {
            position: absolute;
            filter: blur(70px);
            opacity: 0.4;
            animation: blobMove 12s infinite alternate;
            z-index: 0;
        }
        .blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #ccfbf1; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
        .blob-2 { bottom: -10%; right: -10%; width: 400px; height: 400px; background: #e0f2fe; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation-delay: -5s; }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(36px, 5vw, 56px); /* Responsive font size */
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-main);
        }
        .hero-content h1 span {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-visual svg {
            width: 100%;
            max-width: 600px;
            height: auto;
            animation: float 6s ease-in-out infinite;
        }

        /* --- About Section --- */
        .about { background: var(--white); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .vision-mission-container { display: flex; flex-direction: column; gap: 25px; }
        
        .vm-card {
            background: white;
            padding: 30px;
            border-radius: 24px;
            box-shadow: var(--shadow-card); /* Need to define shadow-card or use shadow-sm */
            box-shadow: var(--shadow-sm);
            border: 1px solid #f1f5f9;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .vm-card::before {
            content: ''; position: absolute; top:0; left:0; width: 5px; height: 100%; background: var(--primary);
        }
        .vm-card:hover { transform: translateY(-5px); }

        /* --- Services Section --- */
        .services { background: var(--bg-alt); position: relative; }
        
        .wave-top { position: absolute; top: 0; left: 0; width: 100%; z-index: 0; transform: rotate(180deg); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            transition: 0.4s ease;
            border: 1px solid #f1f5f9;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        
        .icon-box {
            width: 70px; height: 70px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            font-size: 28px; margin-bottom: 20px;
            transition: 0.3s;
        }
        .service-card:hover .icon-box { background: var(--primary); color: white; }

        /* --- Why Us Section --- */
        .why-us { background: white; }
        .why-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        
        .feature-list { display: flex; flex-direction: column; gap: 20px; }
        .feature-item {
            display: flex; align-items: flex-start; gap: 15px;
            background: var(--bg-alt);
            padding: 20px;
            border-radius: 16px;
            transition: 0.3s;
        }
        .feature-item:hover { background: white; box-shadow: var(--shadow-sm); border: 1px solid #e2e8f0; }
        
        .check-icon {
            width: 35px; height: 35px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }

        /* --- Process Section --- */
        .process { background: var(--bg-alt); position: relative; overflow: hidden; }
        
        .process-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        .step-card { 
            background: white;
            padding: 40px 25px; 
            border-radius: 24px; 
            text-align: center;
            transition: 0.3s;
            box-shadow: var(--shadow-sm);
        }
        .step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .step-num {
            width: 60px; height: 60px;
            background: var(--gradient-main);
            color: white;
            font-weight: 800;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            box-shadow: 0 10px 20px rgba(52, 162, 179, 0.2);
        }

        /* --- Advertisers & Publishers --- */
        .split-section { background: white; }
        .split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        
        .audience-card {
            background: linear-gradient(145deg, #ffffff, #f0f9fa);
            padding: 40px;
            border-radius: 30px;
            text-align: center;
            border: 2px solid #e6fcfd;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .audience-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
        
        .audience-icon { font-size: 50px; color: var(--primary); margin-bottom: 20px; display: inline-block; }

        /* --- Stats --- */
        .stats {
            background: var(--gradient-main);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            text-align: center;
            position: relative; z-index: 2;
        }
        .stat-item h3 { font-size: 48px; font-weight: 800; margin-bottom: 5px; }
        .stat-item p { opacity: 0.9; font-size: 18px; font-weight: 500; }

        /* --- Integrations --- */
        .integrations { background: #f0fdfa; text-align: center; }
        .integrations-logos {
            display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px;
        }
        .integrations-logos i { 
            font-size: 40px; color: #cbd5e1; 
            transition: 0.3s; padding: 20px;
            background: white; border-radius: 20px; box-shadow: var(--shadow-sm);
        }
        .integrations-logos i:hover { color: var(--primary); transform: translateY(-5px) scale(1.1); }

        /* --- FAQ --- */
        .faq { background: white; }
        .faq-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
        .faq-item {
            background: var(--bg-alt);
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            font-weight: 600;
            font-size: 18px;
        }
        .faq-answer {
            max-height: 0; overflow: hidden;
            padding: 0 25px;
            transition: 0.3s;
            color: var(--text-light);
        }
        .faq-item.active .faq-answer { padding-bottom: 25px; max-height: 200px; }
        .faq-item.active .faq-question { color: var(--primary); background: rgba(52, 162, 179, 0.05); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        /* --- Contact Section --- */
        .contact { background: linear-gradient(to bottom, #f0f9fa, #ffffff); }
        
        .contact-wrapper {
            background: white;
            border-radius: 40px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
        }
        .contact-info {
            background: var(--primary);
            color: white;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }
        .contact-info::before {
            content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%;
            background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 20%),
                              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 20%);
            background-size: 30px 30px;
            pointer-events: none;
        }
        
        .contact-details-item {
            display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
            font-size: 16px; /* Slightly smaller */
        }
        .contact-details-item i { font-size: 22px; width: 35px; text-align: center; }
        
        .contact-form { padding: 60px; }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--text-main); }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            transition: 0.3s;
            background: #f8fafc;
            font-size: 16px; /* Prevent zoom on iOS */
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(52, 162, 179, 0.1);
        }

        /* --- Footer --- */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 30px;
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px;
        }
        .footer-brand h2 { color: white; font-size: 24px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .footer-col h4 { color: white; margin-bottom: 20px; font-size: 18px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-size: 15px; }
        .footer-col a:hover { color: var(--primary); padding-left: 5px; }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        /* Tablet & Mobile (1024px and below) */
        @media (max-width: 1024px) {
            .hero { padding-top: 100px; text-align: center; justify-content: center; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-content { display: flex; flex-direction: column; align-items: center; }
            
            .about-grid, .why-container, .split-container, .contact-wrapper { grid-template-columns: 1fr; }
            .process-container { grid-template-columns: 1fr; }
            
            .contact-info { padding: 40px; min-height: auto; }
            .contact-form { padding: 40px; }
            
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        /* Mobile (768px and below) */
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; } /* Less vertical padding */
            
            /* Mobile Nav */
            .hamburger { display: block; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%; /* Hidden off-screen */
                width: 75%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: 0.4s ease-in-out;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 1001;
            }
            
            .nav-links.active { right: 0; }
            
            .nav-btn-wrapper {
                margin-top: 20px;
            }
            
            /* Typography */
            h2 { font-size: 32px !important; }
            h3 { font-size: 24px; }
            
            .stats-grid { gap: 30px; }
            .stat-item h3 { font-size: 36px; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-brand h2 { justify-content: center; }
            
            .contact-wrapper { border-radius: 20px; }
            
            /* Specific Mobile Adjustments */
            .hero-visual svg { max-width: 100%; }
            .hero-content h1 { font-size: 36px; }
            .feature-item { padding: 15px; }
            .check-icon { width: 30px; height: 30px; font-size: 12px; }
        }