
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a2e;
            background: #fff;
        }
        
        .hero {
            background: linear-gradient(135deg, #75C4E7 0%, #6AD5E7 100%);
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3em;
            margin-bottom: 25px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .hero p {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-primary {
            display: inline-block;
            background: white;
            color: #75C4E7;
            padding: 18px 45px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 60px;
            color: #1a1a2e;
            font-weight: 700;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-top: 4px solid #75C4E7;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .benefit-card h3 {
            color: #75C4E7;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 600;
        }
        
        .benefit-card p {
            color: #555;
            line-height: 1.8;
        }
        
        .download-section {
            background: #f8f9fa;
            padding: 80px 20px;
            text-align: center;
        }
        
        .download-box {
            background: white;
            max-width: 650px;
            margin: 0 auto;
            padding: 50px 40px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        
        .download-box h2 {
            color: #1a1a2e;
            margin-bottom: 25px;
            font-size: 2em;
        }
        
        .pdf-preview {
            width: 280px;
            height: auto;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .cta-download {
            display: inline-block;
            background: #75C4E7;
            color: white;
            padding: 16px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            margin-top: 25px;
            transition: background 0.3s;
        }
        
        .cta-download:hover {
            background: #6AD5E7;
        }
        
        .file-info {
            margin-top: 20px;
            font-size: 0.9em;
            color: #666;
        }
        
        .testimonials {
            background: white;
            padding: 80px 20px;
        }
        
        .testimonial {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #75C4E7;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.8;
            color: #333;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #75C4E7;
            font-size: 1em;
        }
        
        .contact-section {
            background: #1a1a2e;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .contact-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        
        .contact-subtitle {
            font-size: 1.2em;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            font-size: 1.2em;
        }
        
        .contact-item a {
            color: #75C4E7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-item a:hover {
            color: #6AD5E7;
        }
        
        .footer-text {
            margin-top: 50px;
            opacity: 0.7;
            font-size: 0.95em;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2em;
            }
            
            .hero p {
                font-size: 1.1em;
            }
            
            .benefits {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .contact-info {
                gap: 30px;
            }
        }
    
        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        