:root {
    --primary: #D4A373;
    /* Warm Gold */
    --primary-light: #F3E5AB;
    /* Soft Beige */
    --secondary: #A8D0E6;
    /* Soft Blue */
    --text: #2C3E50;
    --text-light: #607D8B;
    --bg: #FAFAF5;
    --white: #FFFFFF;
    --cta: #27AE60;
    /* Green for action */
    --cta-hover: #219150;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0;
}

.logo {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

/* Slider */
.slider-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #fdfbf7;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}

.slider-track {
    display: flex;
    width: calc(300px * 8);
    /* 4 images * 2 sets * approx width */
    animation: scroll 20s linear infinite;
}

.slider-track img {
    height: 400px;
    width: auto;
    object-fit: contain;
    padding: 0 10px;
    /* Gap between images */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
        /* Move half the width (one full set) */
    }
}

/* Pause on hover for better UX */
.slider-track:hover {
    animation-play-state: paused;
}

/* Responsive Slider */
@media (max-width: 600px) {

    .slider-container,
    .slider-track img {
        height: 300px;
    }
}

.content-body {
    padding: 2.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefit-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Offer Section */
.offer-box {
    background: #F0F8FF;
    /* Very light blue */
    border: 2px dashed var(--secondary);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    position: relative;
}

.exclusive-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-display {
    margin: 1.5rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cta);
}

.btn-cta {
    display: inline-block;
    background: var(--cta);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    width: 100%;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

.timer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #E74C3C;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.no-thanks {
    margin-top: 1.5rem;
}

.no-thanks a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.2s;
}

.no-thanks a:hover {
    border-color: var(--text-light);
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .content-body {
        padding: 1.5rem;
    }
}