.page-promotions {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-dark, #08160F); /* Fallback to custom color if --bg-dark is not set */
    color: var(--text-main, #F2FFF6); /* Main text color on dark background */
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

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

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(8, 22, 15, 0.7); /* Semi-transparent background for content */
    border-radius: 10px;
}

.page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__intro-text {
    font-size: 1.25rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--glow, #57E38D);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--text-main, #F2FFF6);
    border: 2px solid var(--border, #2E7A4E);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--deep-green, #0A4B2C);
    color: var(--gold, #F2C14E);
    border-color: var(--gold, #F2C14E);
}

.page-promotions__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    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: var(--gold, #F2C14E);
    border-radius: 2px;
}

/* Video Section */
.page-promotions__video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--background, #08160F);
    color: var(--text-main, #F2FFF6);
    text-align: center;
}

.page-promotions__video-wrapper {
    position: relative;
    width: 100%; /* Important for desktop flex container */
    max-width: 1280px; /* Max width for video container */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.page-promotions__video-description {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 60px 20px;
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.page-promotions__feature-item {
    background-color: var(--deep-green, #0A4B2C);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__feature-title {
    font-size: 1.5rem;
    color: var(--gold, #F2C14E);
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1rem;
}

/* Current Promotions Section */
.page-promotions__current-promotions {
    padding: 60px 20px;
    background-color: var(--background, #08160F);
}

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

.page-promotions__promotion-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__promotion-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__promotion-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promotion-title {
    font-size: 1.3rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
}

.page-promotions__promotion-description {
    color: var(--text-secondary, #A7D9B8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Get Section */
.page-promotions__how-to-get-section {
    padding: 60px 20px;
    background-color: var(--deep-green, #0A4B2C);
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.page-promotions__step-item {
    background-color: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__step-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold, #F2C14E);
    margin-bottom: 15px;
    background-color: var(--deep-green, #0A4B2C);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid var(--glow, #57E38D);
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 10px;
}

.page-promotions__step-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 0.95rem;
}

.page-promotions__cta-banner {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 0;
}

.page-promotions__cta-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    max-width: 700px;
}

.page-promotions__cta-title {
    font-size: 2.2rem;
    color: var(--gold, #F2C14E);
    margin-bottom: 15px;
}

.page-promotions__cta-text {
    font-size: 1.1rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 30px;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 20px;
    background-color: var(--background, #08160F);
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border, #2E7A4E);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main, #F2FFF6);
    cursor: pointer;
    background-color: var(--deep-green, #0A4B2C);
    border-bottom: 1px solid var(--divider, #1E3A2A);
    list-style: none; /* For details/summary */
}

.page-promotions__faq-item[open] > .page-promotions__faq-question {
    border-bottom: 1px solid var(--glow, #57E38D);
}

.page-promotions__faq-item[open] > .page-promotions__faq-question .page-promotions__faq-toggle {
    color: var(--gold, #F2C14E);
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--glow, #57E38D);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    .page-promotions__section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-promotions__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-promotions__video-section,
    .page-promotions__why-choose-section,
    .page-promotions__current-promotions,
    .page-promotions__how-to-get-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }

    .page-promotions__hero-image,
    .page-promotions__video,
    .page-promotions__promotion-image,
    .page-promotions__cta-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__hero-image-wrapper,
    .page-promotions__video-wrapper,
    .page-promotions__features-grid,
    .page-promotions__promotion-grid,
    .page-promotions__steps-grid,
    .page-promotions__cta-banner,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-promotions__video-section {
        padding-top: 10px !important;
    }

    .page-promotions__promotion-card {
        flex-direction: column;
    }
    .page-promotions__promotion-image {
        height: auto; /* Allow image height to adjust */
    }

    .page-promotions__cta-title {
        font-size: 1.8rem;
    }
    .page-promotions__cta-text {
        font-size: 1rem;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.8rem;
    }
    .page-promotions__section-title {
        font-size: 1.6rem;
    }
    .page-promotions__feature-title,
    .page-promotions__promotion-title,
    .page-promotions__step-title {
        font-size: 1.2rem;
    }
    .page-promotions__cta-title {
        font-size: 1.6rem;
    }
}