/* style/index-exclusive-bonuses.css */
.page-index-exclusive-bonuses {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0D1B2A; /* A darker shade of primary for background */
}

.page-index-exclusive-bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-exclusive-bonuses__hero-section {
    background: linear-gradient(135deg, #1A2E47, #0D1B2A); /* Primary to darker shade */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for main title */
}

.page-index-exclusive-bonuses__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-exclusive-bonuses__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-exclusive-bonuses__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-exclusive-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-index-exclusive-bonuses__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E47; /* Deep Tech Blue */
    border: 2px solid #FFD700;
}

.page-index-exclusive-bonuses__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-index-exclusive-bonuses__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-index-exclusive-bonuses__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1); /* Gold with transparency */
    transform: translateY(-3px);
}

.page-index-exclusive-bonuses__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-index-exclusive-bonuses__btn--huge {
    padding: 20px 40px;
    font-size: 1.4em;
    margin-top: 30px;
}

.page-index-exclusive-bonuses__bonuses-overview,
.page-index-exclusive-bonuses__why-choose,
.page-index-exclusive-bonuses__faq-section,
.page-index-exclusive-bonuses__call-to-action {
    padding: 80px 0;
    background-color: #1A2E47; /* Primary dark blue */
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-exclusive-bonuses__bonuses-overview {
    background-color: #0D1B2A;
}

.page-index-exclusive-bonuses__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-exclusive-bonuses__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #B0B0B0;
}

.page-index-exclusive-bonuses__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-exclusive-bonuses__bonus-card {
    background-color: #1A2E47;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-exclusive-bonuses__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-index-exclusive-bonuses__bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-index-exclusive-bonuses__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-exclusive-bonuses__card-text {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-exclusive-bonuses__why-choose {
    background-color: #1A2E47;
}

.page-index-exclusive-bonuses__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-index-exclusive-bonuses__text-content {
    flex: 2;
    font-size: 1.1em;
    line-height: 1.7;
    color: #E0E0E0;
}

.page-index-exclusive-bonuses__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-exclusive-bonuses__text-content p {
    margin-bottom: 15px;
}

.page-index-exclusive-bonuses__text-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-index-exclusive-bonuses__text-content ul li {
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-index-exclusive-bonuses__image-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-index-exclusive-bonuses__side-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-index-exclusive-bonuses__cta-bottom {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-exclusive-bonuses__faq-section {
    background-color: #0D1B2A;
}

.page-index-exclusive-bonuses__faq-item {
    background-color: #1A2E47;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-index-exclusive-bonuses__faq-item:hover {
    background-color: #2A3F5B;
}

.page-index-exclusive-bonuses__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-index-exclusive-bonuses__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

.page-index-exclusive-bonuses__call-to-action {
    background: linear-gradient(45deg, #1A2E47, #0D1B2A);
    text-align: center;
    padding: 80px 0;
}

.page-index-exclusive-bonuses__call-to-action .page-index-exclusive-bonuses__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-exclusive-bonuses__call-to-action p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-exclusive-bonuses__hero-section {
        padding: 80px 0;
    }

    .page-index-exclusive-bonuses__main-title {
        font-size: 2.8em;
    }

    .page-index-exclusive-bonuses__subtitle {
        font-size: 1.1em;
    }

    .page-index-exclusive-bonuses__section-title {
        font-size: 2.2em;
    }

    .page-index-exclusive-bonuses__content-wrapper {
        flex-direction: column;
    }

    .page-index-exclusive-bonuses__image-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-index-exclusive-bonuses__side-image {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .page-index-exclusive-bonuses__hero-section {
        padding: 60px 0;
    }

    .page-index-exclusive-bonuses__main-title {
        font-size: 2.2em;
    }

    .page-index-exclusive-bonuses__subtitle {
        font-size: 1em;
    }

    .page-index-exclusive-bonuses__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-exclusive-bonuses__btn--huge {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .page-index-exclusive-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-index-exclusive-bonuses__section-description {
        font-size: 0.95em;
    }

    .page-index-exclusive-bonuses__bonus-card {
        padding: 20px;
    }

    .page-index-exclusive-bonuses__card-title {
        font-size: 1.4em;
    }

    .page-index-exclusive-bonuses__text-content h3 {
        font-size: 1.5em;
    }

    .page-index-exclusive-bonuses__faq-question {
        font-size: 1.2em;
    }

    .page-index-exclusive-bonuses__cta-group,
    .page-index-exclusive-bonuses__cta-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-exclusive-bonuses__side-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-index-exclusive-bonuses__main-title {
        font-size: 1.8em;
    }

    .page-index-exclusive-bonuses__section-title {
        font-size: 1.6em;
    }

    .page-index-exclusive-bonuses__btn {
        width: 100%;
    }

    .page-index-exclusive-bonuses__btn--huge {
        width: 100%;
    }
}