.page-promotions {
    font-family: 'Arial', sans-serif;
    background-color: #08160F; /* Background color from custom scheme */
    color: #F2FFF6; /* Main text color from custom scheme */
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content below */
    align-items: center;
    justify-content: center;
    padding-bottom: 60px; /* Space below content before next section */
    overflow: hidden; /* Ensure no overflow */
    box-sizing: border-box;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-promotions__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px; /* Space between image and content */
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: #F2FFF6; /* Main text color */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-promotions__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    background-color: #0A4B2C; /* Deep Green background */
    box-sizing: border-box;
}

.page-promotions__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.page-promotions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%; /* Important for desktop too */
    max-width: 100%; /* Important for desktop too */
    box-sizing: border-box;
}

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

.page-promotions__video-description {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__dark-bg {
    background-color: #08160F; /* Ensure dark background for this section */
    color: #F2FFF6;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__text-block {
    font-size: 1em;
    color: #F2FFF6;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions__promotion-card {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #A7D9B8;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow text to grow */
}

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

.page-promotions__step-card {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold color */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__tips-block {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    margin-top: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions__subtitle {
    font-size: 1.6em;
    color: #F2C14E;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__list li {
    font-size: 1em;
    color: #F2FFF6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.page-promotions__list-icon {
    color: #2AD16F; /* Bright green for checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main color */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions__btn-secondary:hover {
    background-color: #F2C14E;
    color: #08160F; /* Background color for text on hover */
}

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

.page-promotions__faq-item {
    background-color: #11271B; /* Card BG color */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: #F2C14E; /* Gold color for questions */
    list-style: none; /* Remove default marker for details summary */
}

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

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

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: #2AD16F; /* Bright green for toggle icon */
}

.page-promotions__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Secondary text color */
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6em, 4.5vw, 2.5em);
    }
    .page-promotions__promotion-card,
    .page-promotions__step-card {
        padding: 25px;
    }
    .page-promotions__card-title,
    .page-promotions__step-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }
    .page-promotions__hero-content {
        padding: 15px;
        margin-top: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__video-section {
        padding: 10px 15px 40px; /* Small top padding, larger bottom padding */
    }
    .page-promotions__video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__content-area {
        padding: 40px 15px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.4em, 5.5vw, 2.2em);
        margin-bottom: 30px;
    }
    .page-promotions__text-block {
        font-size: 0.95em;
    }
    .page-promotions__promotion-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__promotion-card,
    .page-promotions__step-card,
    .page-promotions__tips-block {
        padding: 20px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__card-title,
    .page-promotions__step-title {
        font-size: 1.3em;
    }
    .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__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-promotions__faq-question {
        padding: 15px;
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95em;
    }
    /* Ensure all images in content areas are responsive */
    .page-promotions img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    /* Specific padding for sections in mobile to prevent overflow */
    .page-promotions__content-area {
        padding-left: 15px;
        padding-right: 15px;
    }
}