.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-promotions__highlight {
    color: #FFD700; /* Gold for highlighting keywords */
    font-weight: bold;
}

.page-promotions__highlight-text {
    color: #FFD700; /* Gold for highlighting keywords */
}

.page-promotions__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F, #1A3A6F);
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-promotions__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__introduction, 
.page-promotions__why-choose, 
.page-promotions__cta, 
.page-promotions__responsible-gaming, 
.page-promotions__faq {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D0D0D0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions__featured {
    padding: 80px 0;
    background-color: #1A2D4A; /* Slightly lighter dark blue */
}

.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__card {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px 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-promotions__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
    background-color: #E6C200;
    color: #000;
    border-color: #E6C200;
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-promotions__btn--tertiary {
    background-color: #1A2D4A;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--tertiary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-promotions__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions__details-list {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions__promo-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__promo-item {
    display: flex;
    flex-direction: column;
    background-color: #1A2D4A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__promo-item:hover {
    transform: translateY(-5px);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-promotions__promo-content {
    padding: 30px;
    text-align: left;
    flex-grow: 1;
}

.page-promotions__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__promo-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
    color: #E6C200;
}

.page-promotions__promo-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-promotions__grid--features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-promotions__feature-item {
    background-color: #1A2D4A;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__feature-text {
    font-size: 0.95em;
    color: #C0C0C0;
}

.page-promotions__faq {
    padding: 60px 0;
    background-color: #1A2D4A;
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions__accordion-item {
    background-color: #0A192F;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__accordion-header {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #1A2D4A;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-item.active .page-promotions__accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__accordion-item.active .page-promotions__accordion-content {
    max-height: 200px; /* Adjust as needed based on content */
    padding-bottom: 25px;
}

.page-promotions__accordion-content p {
    color: #D0D0D0;
    font-size: 1em;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__title {
        font-size: 2.8em;
    }
    .page-promotions__subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__promo-item {
        flex-direction: column;
    }
    .page-promotions__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        height: 400px;
    }
    .page-promotions__title {
        font-size: 2.2em;
    }
    .page-promotions__subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text {
        font-size: 1em;
    }
    .page-promotions__card {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        height: 350px;
    }
    .page-promotions__title {
        font-size: 1.8em;
    }
    .page-promotions__subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__text {
        font-size: 0.9em;
    }
    .page-promotions__card-image {
        height: 150px;
    }
    .page-promotions__promo-image {
        height: 180px;
    }
    .page-promotions__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content {
        padding: 0 20px 20px;
    }
}