.page-promotions {
    background-color: var(--bg-color, #08160F); /* Fallback to custom bg color if --bg-color is not set */
    color: #F2FFF6; /* Main text color for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.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 */
    background-color: #08160F; /* Ensure hero background matches body */
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 12px;
}

.page-promotions__hero-content {
    z-index: 1;
    max-width: 800px;
    color: #F2FFF6;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold color for main title */
    line-height: 1.2;
}

.page-promotions__tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Secondary text color */
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    text-align: center;
}

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

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background: #11271B; /* Card BG as secondary button background */
    color: #F2FFF6; /* Main text color for secondary button */
    border: 2px solid #2E7A4E; /* Border color */
}

.page-promotions__btn-secondary:hover {
    background: #2E7A4E; /* Border color on hover */
    color: #ffffff;
}

/* Section common styles */
.page-promotions__featured-promos,
.page-promotions__guide-section,
.page-promotions__faq-section,
.page-promotions__cta-final {
    padding: 80px 0;
}

.page-promotions__dark-section {
    background-color: #11271B; /* Card BG color for dark sections */
    color: #F2FFF6;
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold color for section titles */
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #A7D9B8;
}

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

.page-promotions__promo-card {
    background-color: #0A4B2C; /* Deep Green for card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-image {
    width: 100%;
    height: 220px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1; /* Allow content to grow */
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2FFF6;
}

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

.page-promotions__card-title a:hover {
    color: #F2C14E; /* Gold color on hover */
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #A7D9B8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
    align-self: flex-start; /* Align button to start */
}

.page-promotions__card-btn:hover {
    opacity: 0.9;
}

/* Guide Section */
.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__step-item {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
}

.page-promotions__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2AD16F; /* Button top color */
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(42, 209, 111, 0.5); /* Glow effect */
}

.page-promotions__step-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-promotions__step-text {
    font-size: 1em;
    color: #A7D9B8;
}

.page-promotions__step-text a {
    color: #2AD16F; /* Button top color for links */
    text-decoration: none;
    font-weight: 600;
}

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

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* FAQ Section */
.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.page-promotions__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E;
    overflow: hidden; /* For details tag */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6;
    background-color: #11271B; /* Card BG for question header */
    transition: background-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background-color: #1E3A2A; /* Divider color on hover */
}

.page-promotions__faq-item[open] > .page-promotions__faq-question {
    background-color: #1E3A2A; /* Active state background */
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-promotions__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    color: #2AD16F; /* Button top color */
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Change + to X visually */
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #A7D9B8;
}

.page-promotions__faq-answer p {
    margin: 0;
}

/* For details tag, hide marker */
.page-promotions__faq-item summary {
    list-style: none;
}
.page-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Final CTA Section */
.page-promotions__cta-final {
    text-align: center;
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
    padding: 100px 0;
}

.page-promotions__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-promotions__hero-image {
        margin-bottom: 20px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions__tagline {
        font-size: 1em;
    }

    .page-promotions__cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__featured-promos,
    .page-promotions__guide-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final {
        padding: 50px 0;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-image {
        height: 180px; /* Adjust height for mobile */
    }

    .page-promotions__card-title {
        font-size: 1.3em;
    }

    .page-promotions__step-item {
        padding: 25px;
    }

    .page-promotions__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-promotions__faq-toggle {
        font-size: 1.5em;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* Mobile image and container responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Ensure video elements (if any) are also responsive */
    .page-promotions video,
    .page-promotions__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }
    .page-promotions__cta-buttons {
      display: flex;
      flex-direction: column;
    }
}