* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2d3748;
    color: white;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.hero {
    background: linear-gradient(135deg, #4a5568 0%, #1a202c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.subheading {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 40px;
}

.benefits {
    padding: 80px 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2d3748;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.social-proof {
    background-color: #f1f5f9;
    padding: 80px 0;
    text-align: center;
}

.social-proof h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #2d3748;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: #2d3748;
}

.cta-section {
    background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-heading {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #4a5568;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    background-color: #ed8936;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #dd6b20;
}

.urgency {
    font-size: 14px;
    margin-top: 15px;
    color: #718096;
}

footer {
    background-color: #2d3748;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #e2e8f0;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: #a0aec0;
}

.bonus-tag {
    background-color: #ed8936;
    color: white;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 10px;
}

.countdown-container {
    margin-top: 20px;
    font-size: 14px;
    color: #e53e3e;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p, .cta-section p {
        font-size: 18px;
    }
    
    .subheading {
        font-size: 20px;
    }
    
    .benefits h2, .social-proof h2, .cta-section h2 {
        font-size: 28px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}
