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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero {
    background: #ffffff;
    color: #333;
    padding: 60px 0 90px;
    min-height: auto;
}

.hero-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 22px;
    margin-top: 10px;
    line-height: 1.3;
    color: #222;
    letter-spacing: -0.3px;
}

.highlight {
    color: #00539F;
    font-weight: 700;
}

.subtitle {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: #5a5a5a;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: #00539F;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 83, 159, 0.2);
}

.cta-button.primary:hover {
    background: #004080;
    box-shadow: 0 4px 12px rgba(0, 83, 159, 0.3);
    transform: translateY(-1px);
}

.cta-button.primary:active {
    transform: translateY(0);
}

.cta-button.large {
    font-size: 1.15rem;
    padding: 18px 52px;
}

.urgency {
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    display: block;
    text-align: center;
}

.clock-icon {
    margin-right: 5px;
    font-size: 0.85rem;
}

.countdown {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
}

/* Gift Card */
.gift-card {
    max-width: 450px;
    margin: 0 auto 45px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gift-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.voucher-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #00539F;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.voucher-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
    color: #00539F;
}

/* Underline decoration */
.underline {
    width: 60px;
    height: 3px;
    background: #00539F;
    margin: 0 auto 50px;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 90px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 0;
    background: transparent;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: #E8F4FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.step-icon svg {
    width: 45px;
    height: 45px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Participate Section */
.why-participate {
    background: #f8f9fa;
    padding: 90px 0;
}

.why-participate h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.benefit {
    background: white;
    padding: 25px 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e5e5e5;
}

.benefit-checkmark {
    width: 32px;
    height: 32px;
    background: #00539F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 90px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.quote {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author {
    text-align: left;
}

.author-name {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.author-location {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
}

/* Final CTA Section */
.final-cta {
    background: white;
    color: #333;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #5a5a5a;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .gift-card {
        max-width: 400px;
    }

    .voucher-badge {
        font-size: 1.6rem;
        padding: 12px 16px;
    }

    .voucher-badge span {
        font-size: 0.65rem;
    }

    .step-icon {
        width: 90px;
        height: 90px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 35px 0 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-top: 20px;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 16px 42px;
        font-size: 1.05rem;
    }

    .gift-card {
        max-width: 340px;
    }

    .voucher-badge {
        font-size: 1.4rem;
        padding: 10px 14px;
        top: 15px;
        right: 15px;
    }

    .voucher-badge span {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .urgency {
        font-size: 0.85rem;
    }

    .countdown {
        font-size: 0.85rem;
    }

    .how-it-works,
    .why-participate,
    .testimonials,
    .final-cta {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .underline {
        margin-bottom: 35px;
    }

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

    .benefit {
        padding: 18px 22px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 35px;
        height: 35px;
    }

    .step h3 {
        font-size: 1.15rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .testimonial {
        padding: 28px;
    }

    .quote {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
