 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        .header {
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .header-cta {
            background: #c0c0c0;
            color: #0a2463;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .header-cta:hover {
            background: #d4d4d4;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(192,192,192,0.4);
        }

        .hero {
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 50%, #2563eb 100%);
            color: white;
            padding: 8rem 2rem 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></svg>');
            opacity: 0.5;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .cta-button {
            background: #c0c0c0;
            color: #0a2463;
            padding: 1.25rem 3rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .cta-button:hover {
            background: #d4d4d4;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(192,192,192,0.4);
        }

        .urgency-text {
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: #c0c0c0;
            font-style: italic;
        }

        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 0.3s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            color: #0a2463;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .result-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #0a2463;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0a2463;
            margin-bottom: 0.5rem;
        }

        .result-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonials {
            background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
            padding: 5rem 2rem;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            position: relative;
        }

        .quote-mark {
            font-size: 4rem;
            color: #c0c0c0;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: bold;
            color: #0a2463;
            margin-top: 1rem;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #666;
        }

        .differentiators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .diff-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .diff-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .diff-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .diff-title {
            font-size: 1.3rem;
            color: #0a2463;
            margin-bottom: 0.75rem;
            font-weight: bold;
        }

        .diff-description {
            color: #666;
            line-height: 1.6;
        }

        .pricing-section {
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
            color: white;
            padding: 5rem 2rem;
        }

        .pricing-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255,255,255,0.95);
            color: #1a1a1a;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .pricing-title {
            font-size: 1.5rem;
            color: #0a2463;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .pricing-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-features li:before {
            content: "✓";
            color: #0a2463;
            font-weight: bold;
            margin-right: 0.75rem;
        }

        .faq-section {
            background: #f8f9fa;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 1.5rem;
            font-weight: bold;
            color: #0a2463;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .badge {
            text-align: center;
        }

        .badge-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c0c0c0 0%, #d4d4d4 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            font-size: 1.8rem;
        }

        .badge-text {
            font-size: 0.9rem;
            color: #666;
            font-weight: bold;
        }

        .footer {
            background: #0a2463;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-cta {
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .footer-cta h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }