        :root {
            --primary: #38AED7;
            --primary-dark: #2a8bb3;
            --secondary: #8b5cf6;
            --accent: #06b6d4;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(56, 174, 215, 0.3);
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            flex-shrink: 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .logo i {
            margin-right: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Main Content - No Scroll */
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 20px 0;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: center;
            height: 100%;
        }
        
        .content-left {
            padding-right: 20px;
        }
        
        .content-left h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .content-left p {
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .highlight-box {
            background: white;
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .highlight-box h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .content-right {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(56, 174, 215, 0.3);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .content-right h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .content-right p {
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .content-right .btn {
            background: white;
            color: var(--primary);
        }
        
        .content-right .btn:hover {
            background: var(--light);
        }
        
        /* Compact Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 20px 0;
            flex-shrink: 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-social-links {
            display: flex;
            gap: 15px;
        }
        
        .footer-social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .footer-social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .product-link {
            margin-top: 10px;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .product-link-text {
            color: var(--primary);
            text-decoration: none;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .content-left {
                padding-right: 0;
            }
            
            .content-right {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .content-left h1 {
                font-size: 2.2rem;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-links {
                order: 2;
            }
            
            .footer-social-links {
                order: 1;
            }
        }
        
        @media (max-height: 700px) {
            .main-content {
                padding: 10px 0;
            }
            
            .content-left h1 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            
            .content-left p {
                margin-bottom: 15px;
            }
            
            .highlight-box {
                padding: 20px;
                margin: 20px 0;
            }
            
            .content-right {
                padding: 25px;
            }
        }