/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Modern, bold for headlines */
    background-color: #ffffff; /* Clean white background */
    color: #333333; /* Soft dark text for readability */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900; /* Extra bold for impact */
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    font-family: 'Montserrat', sans-serif; /* Clean, readable for body */
    font-size: 1.1rem;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #FFC300; /* Sunny yellow for icons */
}

.accent-text {
    color: #007bff; /* Vibrant Blue */
}

.problem-text {
    color: #dc3545; /* Red for emphasis on problems */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e0f2f7 0%, #bbdefb 100%); /* Light blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #1a1a1a; /* Darker text for contrast */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float1 8s infinite ease-in-out;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float2 10s infinite ease-in-out;
}

.pre-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffc107; /* Bright yellow */
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 1.5rem;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* CTA & Timer */
.cta-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.timer-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
    margin-right: 15px;
}

.countdown {
    font-size: 2.2rem;
    font-weight: 900;
    color: #dc3545; /* Red for urgency */
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-cta {
    display: inline-block;
    background-color: #007bff; /* Primary CTA Blue */
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-cta:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
}

.small-print {
    font-size: 0.9rem;
    color: #777777;
    margin-top: 15px;
}

/* Problem-Solution Section */
.problem-solution-section {
    background-color: #f8f9fa; /* Off-white background */
    padding: 80px 0;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.placeholder-image {
    background-color: #e9ecef;
    min-height: 300px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-style: italic;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Benefits Section */
.benefits-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.benefit-item {
    background: #e9f5ff; /* Lighter blue for benefit cards */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: #007bff; /* Blue icon */
    margin-bottom: 15px;
    display: block;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1rem;
    color: #555555;
}

.large-cta {
    font-size: 1.8rem;
    padding: 25px 50px;
}

/* Value Section */
.value-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0e7eb 100%); /* Light grey gradient */
    padding: 80px 0;
    text-align: center;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.offer-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.offer-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.offer-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.total-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

del {
    color: #dc3545; /* Red for crossed out old price */
    margin-right: 15px;
}

.current-price {
    font-size: 2.5rem;
    color: #28a745; /* Green for new, attractive price */
    font-weight: 900;
}

.giant-cta {
    font-size: 2rem;
    padding: 30px 60px;
}

/* Footer Section */
.footer-section {
    background-color: #333333;
    color: #cccccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-section a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .sub-headline { font-size: 1.2rem; }
    .main-cta, .large-cta, .giant-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 90%;
    }
    .split-content {
        flex-direction: column;
        gap: 30px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .offer-details {
        flex-direction: column;
        align-items: center;
    }
    .offer-item {
        width: 100%;
    }
}

/* Animations for hero section */
@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

