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

.page-promotions-birthday-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-birthday-bonus__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-birthday-bonus__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffc107; /* Highlight with secondary color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-birthday-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-birthday-bonus__section {
    padding: 60px 0;
}

.page-promotions-birthday-bonus__section--alt-bg {
    background-color: #e9ecef;
}

.page-promotions-birthday-bonus__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-birthday-bonus__subtitle {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus__content-block {
    margin-bottom: 30px;
}

.page-promotions-birthday-bonus__content-block p,
.page-promotions-birthday-bonus__content-block ul {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus__content-block ul {
    list-style-type: disc;
    padding-left: 25px;
}

.page-promotions-birthday-bonus__content-block ul li {
    margin-bottom: 10px;
}

.page-promotions-birthday-bonus__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-promotions-birthday-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-birthday-bonus__button {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px 5px;
    border: none;
    cursor: pointer;
}

.page-promotions-birthday-bonus__button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promotions-birthday-bonus__button--primary {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-birthday-bonus__button--primary:hover {
    background-color: #0056b3;
}

.page-promotions-birthday-bonus__button--secondary {
    background-color: #6c757d;
    color: #fff;
}

.page-promotions-birthday-bonus__button--secondary:hover {
    background-color: #5a6268;
}

.page-promotions-birthday-bonus__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-birthday-bonus__link:hover {
    text-decoration: underline;
}

.page-promotions-birthday-bonus__step-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-birthday-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-promotions-birthday-bonus__step-item h3 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.8em;
    display: flex;
    align-items: center;
}

.page-promotions-birthday-bonus__step-item h3::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #ffc107;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-promotions-birthday-bonus__faq-list {
    margin-top: 40px;
}

.page-promotions-birthday-bonus__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-birthday-bonus__faq-question {
    padding: 18px 25px;
    margin: 0;
    font-size: 1.3em;
    color: #0056b3;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-birthday-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-promotions-birthday-bonus__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-birthday-bonus__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-birthday-bonus__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px 25px;
}

.page-promotions-birthday-bonus__cta-section {
    background-color: #007bff;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.page-promotions-birthday-bonus__cta-title {
    font-size: 2.5em;
    color: #ffc107;
    margin-bottom: 20px;
}

.page-promotions-birthday-bonus__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-promotions-birthday-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.page-promotions-birthday-bonus__final-note {
    font-style: italic;
    font-size: 1.1em;
    opacity: 0.9;
}

.page-promotions-birthday-bonus .highlight {
    color: #ffc107;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-birthday-bonus__hero-title {
        font-size: 2em;
    }

    .page-promotions-birthday-bonus__hero-description {
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-birthday-bonus__subtitle {
        font-size: 1.4em;
    }

    .page-promotions-birthday-bonus__step-item h3 {
        font-size: 1.5em;
    }

    .page-promotions-birthday-bonus__step-item h3::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-birthday-bonus__faq-answer {
        padding: 0 20px;
    }

    .page-promotions-birthday-bonus__cta-title {
        font-size: 2em;
    }

    .page-promotions-birthday-bonus__cta-description {
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-promotions-birthday-bonus__hero-section {
        padding: 60px 15px;
    }

    .page-promotions-birthday-bonus__section {
        padding: 40px 0;
    }

    .page-promotions-birthday-bonus__container {
        padding: 15px;
    }

    .page-promotions-birthday-bonus__button {
        width: 100%;
        margin: 10px 0;
    }

    .page-promotions-birthday-bonus__cta-buttons {
        flex-direction: column;
    }
}