
        :root {
            --primary: #0a2540;
            --accent: #00d4ff;
            --text: #425466;
            --light-bg: #f6f9fc;
            --white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            margin: 0;
            padding: 0;
            background-color: var(--white);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a2540 0%, #16335a 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Content Styling */
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 50px;
        }

        p { margin-bottom: 20px; font-size: 1.1rem; }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .comparison-table th, .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .comparison-table th {
            background-color: var(--primary);
            color: white;
        }

        .highlight-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            border-top: 4px solid var(--accent);
            margin: 40px 0;
        }

        /* Image Styling */
        .image-container {
            text-align: center;
            margin: 40px 0;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-size: 0.9rem;
            color: #777;
            margin-top: 10px;
            font-style: italic;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s ease;
            margin-top: 20px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,212,255,0.3);
        }

        /* FAQ Section */
        .faq-section {
            background: #fdfdfd;
            padding: 60px 0;
        }

        .faq-item {
            margin-bottom: 20px;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            border: 1px solid #f0f0f0;
        }

        .faq-item h3 {
            margin-top: 0;
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .comparison-table { display: block; overflow-x: auto; }
        }
    