.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #ffffff); /* Inherit from shared or default white */
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #26A9E0; /* Brand color as background */
    overflow: hidden;
}

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

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff; /* White text for dark background */
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-promotions__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-promotions__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
    background-color: #d66f06;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0; /* Brand color for secondary action */
    border: 2px solid #26A9E0;
}

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

.page-promotions__btn-center {
    margin: 30px auto 0;
    display: block;
    width: fit-content;
}

/* General Section Styling */
.page-promotions__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for titles */
}

.page-promotions__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Introduction Section */
.page-promotions__introduction-section {
    background-color: #ffffff;
    color: #333333;
}

/* Featured Promotions Grid */
.page-promotions__featured-promos {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 60px 0;
}

.page-promotions__featured-promos .page-promotions__section-title {
    color: #ffffff;
}

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

.page-promotions__promo-card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 20px;
    color: #26A9E0;
}

.page-promotions__card-description {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-grow: 1; /* Push button to bottom */
}

.page-promotions__promo-card .page-promotions__btn-primary {
    margin: 0 auto;
    width: calc(100% - 40px); /* Adjust width to fit card padding */
}

/* Guide Section */
.page-promotions__guide-section {
    background-color: #f8f8f8;
    color: #333333;
}

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

.page-promotions__step-item {
    text-align: center;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.page-promotions__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-promotions__step-description {
    font-size: 1rem;
    color: #555555;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #26A9E0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-promotions__list-item strong {
    color: #26A9E0;
}

.page-promotions__text-link {
    color: #26A9E0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: #EA7C07;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: #f8f8f8;
    color: #333333;
}

.page-promotions__faq-list {
    margin-top: 30px;
}

.page-promotions__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #26A9E0;
    background-color: #eaf6fa; /* Lighter brand color */
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
    background-color: #dceef5;
}

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

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
}

.page-promotions__faq-answer {
    padding: 20px;
    font-size: 1.05rem;
    color: #555555;
    border-top: 1px solid #e0e0e0;
}

/* Final CTA Section */
.page-promotions__cta-final {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #ffffff;
    margin-bottom: 30px;
}

.page-promotions__cta-final .page-promotions__text-block {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-promotions__cta-final .page-promotions__text-link {
    color: #ffffff;
    text-decoration: underline;
}

.page-promotions__cta-final .page-promotions__text-link:hover {
    color: #EA7C07;
}

/* Utility classes for color contrast */
.page-promotions__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__text-white {
    color: #ffffff;
}

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

    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__main-title {
        font-size: 2rem;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important; /* Force full width for buttons */
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-promotions__container {
        padding: 30px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-promotions__text-block,
    .page-promotions__list-item,
    .page-promotions__card-description,
    .page-promotions__faq-answer p {
        font-size: 0.95rem;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr; /* Single column for promo cards */
    }

    .page-promotions__card-image {
        height: 180px;
    }

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

    .page-promotions__guide-steps {
        grid-template-columns: 1fr; /* Single column for guide steps */
    }

    .page-promotions__faq-item summary {
        font-size: 1.1rem;
        padding: 15px;
    }

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

    /* Mobile image 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,
    .page-promotions__hero-section,
    .page-promotions__featured-promos,
    .page-promotions__guide-section,
    .page-promotions__terms-conditions,
    .page-promotions__faq-section,
    .page-promotions__cta-final {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important; /* Prevent horizontal scroll */
    }

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

    /* Specific for video section (if any) - no video in this page, but keeping the rule structure */
    .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__video-section {
        padding-top: 10px !important;
    }
}

/* Ensure content area images are not too small */
/* This rule targets all images within the main content area of .page-promotions */
.page-promotions img:not(.page-promotions__step-icon img) {
    min-width: 200px;
    min-height: 200px;
}

/* Desktop width for video container (even if no video on this page, as per rule) */
.page-promotions__video-container {
    width: 100%; /* Must be 100% for desktop */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}