
        body {
            background-color: #c61e280a;
            color: #333;
            line-height: 1.6;
        }
     
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            background-color: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #C61E28;
        }
        
        .trust-badges {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .trust-badge {
            background-color: #f1f3f4;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c61e2830 100%);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            color: #C61E28;
        }
       
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .hero-cta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #C61E28;
            color: white;
            padding: 10px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 25px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #1557b0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .secondary-button {
            background-color: white;
            color: #C61E28;
            border: 2px solid #C61E28;
        }
        
        .secondary-button:hover {
            background-color: #f5f5f5;
        }
        
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .lead-capture {
            padding: 60px 0;
            background-color: white;
            border-top: 3px solid #C61E28;
        }
        
        .lead-capture-box {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c61e2830 100%);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .lead-capture h2 {
            font-size: 1.8rem;
            color: #C61E28;
            margin-bottom: 15px;
        }
        
        .lead-capture p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .email-form {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .email-input {
            flex: 1;
            min-width: 250px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: white;
        }
        
        .email-submit {
            background-color: #C61E28;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .email-submit:hover {
            background-color: #1557b0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .privacy-text {
            font-size: 0.9rem;
            color: #888;
            margin-top: 15px;
        }
        
        .trust-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .trust-icon {
            width: 50px;
            height: 50px;
            background-color: #c61e280f;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #C61E28;
            font-size: 24px;
        }
        
        .how-it-works {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #C61E28;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            flex: 1 1 250px;
            display: flex;
            flex-direction: column;
            align-items: normal;
            text-align: left;
            padding: 30px;
            border-radius: 8px;
            background-color: #c61e280d;
            transition: all 0.3s ease;
        }
        
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: #C61E28;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .step h3 {
            margin-bottom: 15px;
            color: #C61E28;
        }
        
        .benefits {
            padding: 80px 0;
            background-color: #c61e280a;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background-color: #c61e2826;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #C61E28;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .benefit h3 {
            margin-bottom: 15px;
            color: #C61E28;
        }
        
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 40px auto 0;
            padding: 30px;
            background-color: #c61e280a;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial {
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #C61E28;
        }
        
        .country-selector {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c61e2830 100%);
        }
        
        .selector-form {
            max-width: 800px;
            margin: 40px auto 0;
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: #444;
        }
        
        .form-group select,
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #f9f9f9;
        }
        
        .delivery-time {
            padding: 20px;
            background-color: #c61e2826;
            border-radius: 5px;
            margin-bottom: 25px;
            font-weight: bold;
            color: #C61E28;
            text-align: center;
        }
        
        .price-display {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 25px;
            color: #C61E28;
            font-weight: bold;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .faq {
            padding: 80px 0;
            background-color: #c61e280a;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 20px;
            background-color: #c61e2838;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        footer {
            background-color: #C61E28;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1 1 200px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .trust-badges {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
               font-family: 'IvyPrestoHeadlinelight' !important; 
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                max-width: 400px;
                width: 100%;
            }
            
            .selector-form {
                padding: 20px;
            }
        }
        .email-form {
                flex-direction: column;
            }
            
            .email-input {
                min-width: 100%;
                margin-bottom: 15px;
            }