/* style/faq-bonus-promotions.css */
.page-faq-bonus-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-faq-bonus-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-bonus-promotions__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFCC00;
}

.page-faq-bonus-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
    animation: page-faq-bonus-promotions__hero-animation 15s infinite linear;
}

@keyframes page-faq-bonus-promotions__hero-animation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-faq-bonus-promotions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-faq-bonus-promotions__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-faq-bonus-promotions__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-faq-bonus-promotions__button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-faq-bonus-promotions__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-faq-bonus-promotions__button--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-faq-bonus-promotions__button--secondary:hover {
    background-color: #001a33;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-faq-bonus-promotions__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin: 10px;
}

.page-faq-bonus-promotions__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-faq-bonus-promotions__section:nth-of-type(odd) {
    background-color: #f0f5f9;
}

.page-faq-bonus-promotions__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-bonus-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-faq-bonus-promotions__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-faq-bonus-promotions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-faq-bonus-promotions__list,
.page-faq-bonus-promotions__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-faq-bonus-promotions__ordered-list {
    list-style-type: decimal;
}

.page-faq-bonus-promotions__list li,
.page-faq-bonus-promotions__ordered-list li {
    margin-bottom: 10px;
}

.page-faq-bonus-promotions__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq-bonus-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-faq-bonus-promotions__image:hover {
    transform: translateY(-5px);
}

.page-faq-bonus-promotions__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-faq-bonus-promotions__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-faq-bonus-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-faq-bonus-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq-bonus-promotions__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 0;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.page-faq-bonus-promotions__faq-answer.active {
    display: block;
}

.page-faq-bonus-promotions__cta-bottom {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #001a33, #003366);
    color: #ffffff;
    border-top: 5px solid #FFCC00;
}

.page-faq-bonus-promotions__cta-bottom .page-faq-bonus-promotions__section-title {
    color: #FFCC00;
    margin-bottom: 20px;
}

.page-faq-bonus-promotions__cta-bottom p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-faq-bonus-promotions__image-wrapper--cta {
    margin-bottom: 50px;
}

.page-faq-bonus-promotions__floating-promo-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #FFCC00;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: page-faq-bonus-promotions__pulse 2s infinite;
}

.page-faq-bonus-promotions__floating-promo-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes page-faq-bonus-promotions__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.page-faq-bonus-promotions__floating-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    font-size: 1.1em;
}

.page-faq-bonus-promotions__floating-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-bonus-promotions__title {
        font-size: 2.5em;
    }
    .page-faq-bonus-promotions__subtitle {
        font-size: 1.1em;
    }
    .page-faq-bonus-promotions__section-title {
        font-size: 2em;
    }
    .page-faq-bonus-promotions__sub-section-title {
        font-size: 1.5em;
    }
    .page-faq-bonus-promotions__button--large {
        padding: 14px 25px;
        font-size: 1.1em;
        margin: 5px;
    }
    .page-faq-bonus-promotions__floating-promo-menu {
        bottom: 20px;
        right: 20px;
    }
    .page-faq-bonus-promotions__floating-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    .page-faq-bonus-promotions__floating-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-faq-bonus-promotions__title {
        font-size: 2em;
    }
    .page-faq-bonus-promotions__subtitle {
        font-size: 1em;
    }
    .page-faq-bonus-promotions__section {
        padding: 40px 0;
    }
    .page-faq-bonus-promotions__section-title {
        font-size: 1.8em;
    }
    .page-faq-bonus-promotions__sub-section-title {
        font-size: 1.3em;
    }
    .page-faq-bonus-promotions__button {
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }
    .page-faq-bonus-promotions__button--large {
        margin: 5px 0;
    }
    .page-faq-bonus-promotions__floating-promo-menu {
        bottom: 15px;
        right: 15px;
    }
}