  :root {
            --gold: #D4AF37;
            --dark-gold: #B8860B;
            --red: #C41E3A;
            --dark-red: #8B0000;
            --light-bg: #f9f9f9;
            --dark-text: #333;
            --light-text: #fff;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark-text);
            line-height: 1.6;
            padding: 5px 0;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--light-text);
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .logo {
            max-width: 200px;
            margin: 0 auto 15px;
            position: relative;
            z-index: 1;
        }
        
        .logo img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }
        
        .offer-tag {
            background-color: var(--red);
            color: white;
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        h1 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--light-text);
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        h2 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark-gold);
        }
        
        .section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .section:hover {
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        .highlight {
            color: var(--red);
            font-weight: bold;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature {
            flex: 1 1 250px;
            text-align: center;
            padding: 25px 20px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            border-top: 4px solid var(--gold);
            transition: var(--transition);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .cta-button {
            display: block;
            width: 100%;
            max-width: 400px;
            margin: 30px auto;
            padding: 16px 25px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, var(--dark-gold), var(--gold));
        }
        
        .cta-button i {
            margin-right: 10px;
        }
        
        .footer {
            text-align: center;
            padding: 20px 0;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            margin-top: 30px;
        }
        
        .footer-logo {
            max-width: 150px;
            margin: 0 auto 15px;
        }
        
        .footer-logo img {
            width: 100%;
            height: auto;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #999;
            margin-top: 20px;
            text-align: center;
            line-height: 1.5;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .legal-link {
            color: var(--dark-gold);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        .legal-link:hover {
            color: var(--red);
            background-color: rgba(212, 175, 55, 0.1);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--red);
        }
        
        .modal h3 {
            color: var(--dark-gold);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 0 15px;
            }
            
            .section {
                padding: 20px 15px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
            
            h2 {
                font-size: 1.2rem;
            }
            
            .features {
                flex-direction: column;
            }
            
            .legal-links {
                flex-direction: column;
                gap: 10px;
            }
        }