
    /* Base styles for the page container */
.page-007-win {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for header offset */
}

/* Section common styles */
.page-007-win__section-title {
    font-size: 2.5em;
    color: #e94560; /* Accent color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-007-win__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #b0b0b0;
}

/* Hero Section */
.page-007-win__hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 10px 20px; /* Small padding top, body handles main offset */
    box-sizing: border-box;
}

.page-007-win__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-007-win__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.page-007-win__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-007-win__hero-title {
    font-size: 3.5em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-007-win__hero-description {
    font-size: 1.3em;
    color: #d0d0d0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-007-win__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-007-win__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-007-win__cta-button--primary {
    background-color: #e94560; /* Accent color */
    color: #ffffff;
    border: none;
}

.page-007-win__cta-button--primary:hover {
    background-color: #d83450;
    transform: translateY(-3px);
}

.page-007-win__cta-button--secondary {
    background-color: transparent;
    color: #e94560;
    border: 2px solid #e94560;
}

.page-007-win__cta-button--secondary:hover {
    background-color: #e94560;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Floating Buttons */
.page-007-win__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-007-win__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-007-win__floating-button--register {
    background-color: #e94560; /* Accent color */
}

.page-007-win__floating-button--register:hover {
    background-color: #d83450;
    transform: translateY(-2px);
}

.page-007-win__floating-button--login {
    background-color: #0f3460; /* Darker accent */
}

.page-007-win__floating-button--login:hover {
    background-color: #0c2b50;
    transform: translateY(-2px);
}

/* Products Section */
.page-007-win__products-section {
    padding: 60px 20px;
    background-color: #16213e; /* Slightly lighter dark background */
}

.page-007-win__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-007-win__product-card {
    background-color: #0f3460;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-007-win__product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-007-win__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-007-win__product-title {
    font-size: 1.8em;
    color: #e94560;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-007-win__product-text {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

/* Promotions Section */
.page-007-win__promotions-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-007-win__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-007-win__promo-card {
    background-color: #0f3460;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-007-win__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-007-win__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-007-win__promo-title {
    font-size: 1.8em;
    color: #e94560;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-007-win__promo-text {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-007-win__promo-card .page-007-win__cta-button {
    margin-top: auto; /* Push button to bottom */
    margin-bottom: 20px;
    align-self: center;
    background-color: #e94560;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
}

.page-007-win__promo-card .page-007-win__cta-button:hover {
    background-color: #d83450;
    transform: translateY(-2px);
}

/* Features Section */
.page-007-win__features-section {
    padding: 60px 20px;
    background-color: #16213e;
}

.page-007-win__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-007-win__feature-item {
    background-color: #0f3460;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-007-win__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-007-win__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-007-win__feature-title {
    font-size: 1.8em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-007-win__feature-text {
    font-size: 1em;
    color: #c0c0c0;
}

/* Providers Section */
.page-007-win__providers-section,
.page-007-win__payments-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-007-win__providers-grid,
.page-007-win__payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-007-win__provider-item,
.page-007-win__payment-item {
    background-color: #0f3460;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-007-win__provider-item:hover,
.page-007-win__payment-item:hover {
    transform: translateY(-5px);
    background-color: #1e4f8a;
}

.page-007-win__provider-logo,
.page-007-win__payment-logo {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.page-007-win__provider-name,
.page-007-win__payment-name {
    font-size: 1em;
    color: #e0e0e0;
    font-weight: bold;
}

/* FAQ Section */
.page-007-win__faq-section {
    padding: 60px 20px;
    background-color: #16213e;
}

.page-007-win__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-007-win__faq-item {
    background-color: #0f3460;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-007-win__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #1e4f8a;
    transition: background-color 0.3s ease;
}

.page-007-win__faq-question:hover {
    background-color: #2a5a9a;
}

.page-007-win__faq-heading {
    font-size: 1.3em;
    color: #e94560;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-007-win__faq-toggle {
    font-size: 1.8em;
    color: #e0e0e0;
    font-weight: bold;
    line-height: 1;
    pointer-events: none; /* Prevent span from blocking click event */
    transition: transform 0.3s ease;
}

.page-007-win__faq-item.active .page-007-win__faq-toggle {
    transform: rotate(45deg);
}

.page-007-win__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding matches question */
    opacity: 0;
    color: #c0c0c0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

.page-007-win__faq-item.active .page-007-win__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important; /* Ensure content is visible */
    opacity: 1;
}

.page-007-win__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-007-win__cta-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
    text-align: center;
}

.page-007-win__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    background-color: #e94560;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-007-win__cta-button--large:hover {
    background-color: #d83450;
    transform: translateY(-3px);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .page-007-win__hero-section {
        height: 500px;
        padding: 10px;
    }

    .page-007-win__hero-title {
        font-size: 2.5em;
    }

    .page-007-win__hero-description {
        font-size: 1.1em;
    }

    .page-007-win__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-007-win__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-007-win__section-title {
        font-size: 2em;
        padding-top: 30px;
    }

    .page-007-win__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* List item responsive styles */
    .page-007-win__products-grid,
    .page-007-win__promotions-grid,
    .page-007-win__features-grid,
    .page-007-win__providers-grid,
    .page-007-win__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .page-007-win__product-card,
    .page-007-win__promo-card,
    .page-007-win__feature-item,
    .page-007-win__provider-item,
    .page-007-win__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-007-win__product-image,
    .page-007-win__promo-image,
    .page-007-win__feature-icon,
    .page-007-win__provider-logo,
    .page-007-win__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-007-win__product-title,
    .page-007-win__promo-title,
    .page-007-win__feature-title {
        font-size: 1.5em;
    }

    .page-007-win__faq-question {
        padding: 15px 20px;
    }

    .page-007-win__faq-heading {
        font-size: 1.1em;
    }

    .page-007-win__faq-toggle {
        font-size: 1.5em;
    }

    .page-007-win__faq-answer {
        padding: 0 20px;
    }

    .page-007-win__faq-item.active .page-007-win__faq-answer {
        padding: 15px 20px !important;
    }

    .page-007-win__floating-buttons {
        bottom: 15px;
        gap: 10px;
    }

    .page-007-win__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
  