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

/* 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 as body handles --header-offset */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #F2FFF6; /* Text Main */
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive H1 */
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold for title highlight */
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

/* General Sections */
.page-promotions__section {
    padding: 40px 20px;
    background-color: #08160F; /* Background */
}

.page-promotions__introduction {
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #11A84E, #22C768);
    margin: 15px auto 0;
    border-radius: 5px;
}

.page-promotions__text-block {
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__highlight {
    color: #57E38D; /* Glow */
    font-weight: bold;
}

/* Buttons */
.page-promotions__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-primary--large {
    font-size: 1.1rem;
    padding: 18px 35px;
}

.page-promotions__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 15px;
}

.page-promotions__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1); /* Light hover effect */
    color: #F2FFF6;
    border-color: #57E38D;
}

.page-promotions__btn-secondary--large {
    font-size: 1.1rem;
    padding: 16px 33px;
}

.page-promotions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__cta-wrapper--final {
    margin-top: 60px;
}

/* Promo Grid */
.page-promotions__promo-types {
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__promo-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8); /* Slightly darken image */
}

.page-promotions__promo-card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__promo-card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
    flex-grow: 1; /* Make description take available space */
}

/* Lists */
.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions__list-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__list-item:last-child {
    margin-bottom: 0;
}

.page-promotions__list-item strong {
    color: #57E38D; /* Glow */
}

.page-promotions__list--ordered {
    counter-reset: step-counter;
}

.page-promotions__list--ordered .page-promotions__list-item {
    position: relative;
    padding-left: 50px;
    text-align: left;
}

.page-promotions__list--ordered .page-promotions__list-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #22C768; /* Auxiliary color */
    color: #F2FFF6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.page-promotions__list-title {
    font-size: 1.2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 5px;
    font-weight: 600;
}

.page-promotions__list-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-promotions__link {
    color: #22C768; /* Auxiliary color */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__link:hover {
    color: #57E38D; /* Glow */
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: #0A4B2C; /* Deep Green */
}

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

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

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

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

.page-promotions__faq-item summary:hover {
    background-color: rgba(34, 199, 104, 0.1); /* Light hover effect */
}

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

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #22C768; /* Auxiliary color */
}

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

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

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

    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-promotions__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

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

    .page-promotions__promo-card {
        padding: 20px;
    }

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

    .page-promotions__promo-card-description {
        font-size: 0.9rem;
    }

    .page-promotions__list-item {
        padding: 12px 15px;
        margin-bottom: 10px;
    }

    .page-promotions__list--ordered .page-promotions__list-item {
        padding-left: 45px;
    }

    .page-promotions__list--ordered .page-promotions__list-item::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
        left: 10px;
        top: 12px;
    }

    .page-promotions__list-title {
        font-size: 1.1rem;
    }

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

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

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    .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;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .page-promotions__cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-promotions__cta-wrapper--final {
        padding: 0 15px;
    }

    .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__promo-card,
    .page-promotions__list-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}