.page-promotions {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    position: relative;
    text-align: center;
    padding-bottom: 20px; /* Space between image and content */
    padding-top: 10px; /* Small top padding as per instruction */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit hero image height */
}

.page-promotions__hero-content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold for main title */
    letter-spacing: 0.05em;
}

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #A7D9B8;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-promotions__promotions-list-section,
.page-promotions__benefits-section,
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-promotions__promotion-card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2);
}

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
}

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

.page-promotions__card-text {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__benefit-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2);
}

.page-promotions__benefit-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__benefit-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
}

.page-promotions__benefit-text {
    font-size: 0.95em;
    color: #A7D9B8;
    line-height: 1.5;
}

.page-promotions__faq-list {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 20px;
}

.page-promotions__faq-item {
    border-bottom: 1px solid #1E3A2A;
    padding: 15px 0;
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
}

.page-promotions__faq-question {
    background-color: transparent;
    border: none;
    color: #F2FFF6;
    font-size: 1.15em;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.page-promotions__faq-question:hover {
    color: #57E38D;
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    color: #A7D9B8;
    padding-left: 10px;
}

.page-promotions__faq-answer p {
    padding-top: 10px;
    margin: 0;
    line-height: 1.6;
}

/* Active FAQ item */
.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }

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

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__hero-image,
    .page-promotions__card-image,
    .page-promotions__benefit-icon {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__promotions-list-section,
    .page-promotions__benefits-section,
    .page-promotions__faq-section {
        padding: 20px 15px;
    }

    .page-promotions__promotion-grid,
    .page-promotions__benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure content area images don't cause overflow */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__card-text {
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
    }
}