.page-promo {
    color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* White text for dark background */
    text-align: center;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-promo__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 700;
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-promo__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promo__button {
    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-promo__button--register {
    background-color: #FCBC45; /* Login color for Register button */
    color: #000000; /* Black text for yellow button */
    border: 2px solid #FCBC45;
}

.page-promo__button--register:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__button--login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promo__button--login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-promo__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promo__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background effect */
}

.page-promo__promotions-grid {
    padding: 60px 0;
    background-color: #FFFFFF; /* White background */
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promo__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

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

.page-promo__promo-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promo__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promo__card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 25px 20px 15px 20px;
    font-weight: 600;
}

.page-promo__card-description {
    font-size: 1em;
    color: #666666;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.page-promo__button--small {
    background-color: #000000; /* Main color for small buttons */
    color: #FFFFFF;
    padding: 12px 25px;
    font-size: 0.95em;
    border-radius: 6px;
    margin: 0 20px 20px 20px;
    text-align: center;
}

.page-promo__button--small:hover {
    background-color: #333333;
}

.page-promo__vip-benefits {
    background-color: #000000; /* Dark background for VIP section */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-promo__vip-benefits .page-promo__section-title {
    color: #FFFFFF;
}

.page-promo__vip-benefits .page-promo__section-intro,
.page-promo__vip-benefits .page-promo__section-text {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    line-height: 1.7;
}

.page-promo__button--secondary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 30px;
}

.page-promo__button--secondary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__faq-list {
    max-width: 900px;
    margin: 50px auto;
}

.page-promo__faq-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-promo__faq-more {
    text-align: center;
    font-size: 1.1em;
    color: #555555;
    margin-top: 40px;
}

.page-promo__faq-more a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__faq-more a:hover {
    text-decoration: underline;
}

.page-promo__cta-section {
    background-color: #FCBC45; /* Accent color for CTA */
    color: #000000;
    padding: 70px 0;
    text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
    color: #000000;
    font-size: 3em;
}

.page-promo__cta-section .page-promo__section-intro {
    color: #333333;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
        padding-bottom: 60px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__section-intro {
        font-size: 1em;
    }
    .page-promo__grid {
        grid-template-columns: 1fr;
    }
    .page-promo__button {
        width: 100%;
        max-width: 280px;
    }
    .page-promo__promo-card {
        margin: 0 auto;
        max-width: 400px;
    }
    .page-promo__vip-benefits,
    .page-promo__faq-section,
    .page-promo__cta-section {
        padding: 50px 0;
    }
    .page-promo__cta-section .page-promo__section-title {
        font-size: 2.5em;
    }
    /* Mobile content area image sizing for overflow prevention */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.95em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__faq-question {
        font-size: 1.1em;
    }
    .page-promo__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promo__cta-section .page-promo__section-title {
        font-size: 2em;
    }
}