body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #333; /* Darker text for light background */
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center; /* Center container horizontally */
    align-items: flex-start; /* Align container to top */
    text-align: center;
    background-color: #f8f9fa; /* Light fallback color */
    padding-top: 40px;
    padding-bottom: 40px;
}

.container {
    background-color: rgba(255, 255, 255, 0.95); /* Lighter, brighter container */
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); /* Softer shadow */
    max-width: 90%;
    width: 800px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo {
    width: 60px;
    height: 60px;
}

header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin: 0;
    font-weight: 700;
    color: #121212; /* Very dark heading */
    text-shadow: none;
}

header h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 10px;
    font-weight: 700;
    color: #343a40; /* Dark Grey Accent */
    text-shadow: none;
}

header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #495057; /* Slightly lighter body text */
}

main {
    padding-top: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: block;
    padding: 20px;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 210, 63, 0.5);
}

.btn-primary {
    background: #FFD23F; /* Bright Yellow */
    color: #1a1a1a; /* Dark text for contrast */
}

.redirect-message {
    font-size: 1rem;
    color: #6c757d;
}

#countdown {
    font-weight: bold;
    color: #343a40;
}

.trust-features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.trust-feature {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.trust-icon {
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 15px;
}

.trust-feature h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #343a40;
}

.trust-feature p {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

.features {
    margin-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.features h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.feature-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
}

.feature-item i {
    font-size: 2.2rem;
    color: #FFC107; /* Matching Yellow Accent */
}

.how-it-works {
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.how-it-works h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    font-size: 2.5rem;
    color: #FFC107; /* Matching Yellow Accent */
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #343a40;
}

.step p {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
}

.testimonials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.testimonials h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #FFD23F;
}

.testimonial-author {
    font-weight: 700;
    text-align: right;
    color: #343a40;
}

.info-scroll-container {
    text-align: left;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.partner-info {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    color: #495057;
}

.info-content h3 {
    font-size: 1.3rem;
    color: #343a40;
    margin-top: 25px;
    margin-bottom: 10px;
    border-bottom: 2px solid #FFD23F;
    padding-bottom: 5px;
}

.info-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 8px;
}

.info-content p, .info-content li {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-content ul {
    list-style-position: inside;
    padding-left: 0;
}

.info-content li {
    margin-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.info-grid-item {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-grid-item strong {
    display: block;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 5px;
}

.info-grid-item span {
    color: #495057;
}

.sticky-button-container {
    display: none; /* Hidden by default */
}

/* --- Mobile Optimizations --- */
@media (max-width: 768px) {
    body, html {
        padding-top: 20px;
        padding-bottom: 120px; /* Space for the sticky button */
        justify-content: center; /* Center container horizontally on mobile */
        align-items: flex-start;
    }
    .container {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .button-container {
        margin-bottom: 30px;
    }
    .sticky-button-container {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 15px 20px;
        box-sizing: border-box;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    }
    .sticky-button-container .btn {
        padding: 15px;
        font-size: 1.3rem;
    }
    .sticky-button-container .btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        min-width: 100%;
    }

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