.page-promotions {
    font-family: Arial, sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: var(--bg-color, #0D0E12); /* Background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image then text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #0D0E12; /* Background */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Match max width of the hero image */
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default cover for desktop */
}

.page-promotions__hero-content {
    padding: 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #FFB04D; /* Glow */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-link,
.page-promotions a[class*="button"],
.page-promotions a[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to width */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #FFA53A; /* Auxiliary */
    border: 2px solid #FFA53A; /* Auxiliary */
}

.page-promotions__btn-secondary:hover {
    background-color: #FFA53A; /* Auxiliary */
    color: #17191F; /* Card BG */
    transform: translateY(-2px);
}

.page-promotions__btn-small {
    padding: 8px 18px;
    font-size: 0.95em;
    border-radius: 6px;
}

/* Overview Section */
.page-promotions__overview-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0D0E12; /* Background */
}

.page-promotions__dark-section {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
}

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: 600;
    color: #FFB04D; /* Glow */
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-promotions__section-description {
    font-size: 1.05em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.page-promotions__promo-card {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFA53A; /* Auxiliary */
    margin-bottom: 10px;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-link {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    align-self: flex-start;
    margin-top: auto; /* Push to bottom */
}

.page-promotions__card-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Details Section */
.page-promotions__details-section {
    padding: 60px 0;
    background-color: #0D0E12; /* Background */
}

.page-promotions__promo-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__promo-subtitle {
    font-size: 1.8em;
    font-weight: 600;
    color: #FFA53A; /* Auxiliary */
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-promotions__promo-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions__promo-text {
    font-size: 1.05em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 20px;
}

.page-promotions__promo-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 25px;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__promo-list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-promotions__promo-list li strong {
    color: #FFB04D; /* Glow */
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
}

.page-promotions__terms-content {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__terms-subtitle {
    font-size: 1.6em;
    font-weight: 600;
    color: #FFA53A; /* Auxiliary */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions__terms-content p {
    font-size: 1em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 15px;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: #0D0E12; /* Background */
    text-align: center;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.page-promotions__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #FFA53A; /* Auxiliary */
    cursor: pointer;
    list-style: none; /* Remove default marker */
    outline: none;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
    background-color: rgba(255, 165, 58, 0.1);
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

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

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFB04D; /* Glow */
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    content: "−";
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__faq-answer p {
    margin-bottom: 10px;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom {
    padding: 60px 0;
    text-align: center;
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
}

/* Contrast Fixes */
.page-promotions__text-contrast-fix {
    color: #FFF3E6 !important; /* Ensure light text on dark brand colors */
}

/* General image and container responsive styles */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.4em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    /* Hero image desktop contain for smaller screens if needed */
    /* .page-promotions__hero-image { object-fit: contain; aspect-ratio: unset; max-height: none; } */
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px;
    }

    /* Hero Section */
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
    }
    .page-promotions__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-promotions__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important; /* Mobile: contain to prevent cropping */
        aspect-ratio: unset !important;
        max-height: none !important;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em); /* Clamp for h1 font size */
        margin-top: 20px;
    }
    .page-promotions__intro-text {
        font-size: 1em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important; /* Adjust padding for mobile */
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .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;
    }

    /* Overview Section */
    .page-promotions__overview-section,
    .page-promotions__details-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-bottom {
        padding: 30px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .page-promotions__promo-card {
        padding: 20px;
    }
    .page-promotions__card-image {
        height: 180px; /* Adjust height for mobile cards */
    }

    /* Details Section */
    .page-promotions__promo-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-promotions__promo-subtitle {
        font-size: 1.5em;
    }
    .page-promotions__promo-image {
        max-height: 250px; /* Adjust max height for mobile detail images */
    }

    /* Terms Section */
    .page-promotions__terms-content {
        padding: 20px;
    }
    .page-promotions__terms-subtitle {
        font-size: 1.4em;
    }

    /* FAQ Section */
    .page-promotions__faq-list {
        padding: 0 15px;
    }
    .page-promotions__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* General image and container responsive styles */
    .page-promotions img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__promo-grid,
    .page-promotions__promo-item,
    .page-promotions__terms-content,
    .page-promotions__faq-list,
    .page-promotions__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding handled by .page-promotions__container or specific elements */
    }
}