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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding for the first section */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #1E3A2A;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Ensure hero image doesn't get too tall */
    margin-bottom: 20px;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

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

.page-promotions__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__promotions-grid-section,
.page-promotions__cta-banner-section,
.page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Gold for section titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__section-subtitle {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__card {
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E;
    display: flex;
    flex-direction: column;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D;
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card images */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: #F2FFF6;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #2AD16F;
}

.page-promotions__card-description {
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.page-promotions__cta-banner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: #0A4B2C; /* Deep Green for CTA banner background */
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E;
}

.page-promotions__cta-banner-content {
    text-align: center;
    max-width: 700px;
}

.page-promotions__cta-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Gold for CTA title */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__cta-banner-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.page-promotions__faq-list {
    margin-top: 40px;
    text-align: left;
}

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

.page-promotions__faq-question {
    padding: 20px 25px;
    font-size: 1.2rem;
    color: #F2FFF6;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #0A4B2C;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #11A84E;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #A7D9B8;
}

.page-promotions__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-promotions__faq-answer p {
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-image {
        max-height: 500px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-promotions__section-title {
        font-size: 2rem;
    }
    .page-promotions__cta-title {
        font-size: 1.8rem;
    }
    .page-promotions__card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-image,
    .page-promotions__cta-banner-image,
    .page-promotions__grid img {
        max-width: 100%;
        height: auto;
    }
    .page-promotions__hero-section,
    .page-promotions__promotions-grid-section,
    .page-promotions__cta-banner-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .page-promotions__hero-description {
        font-size: 1rem;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-promotions__section-title {
        font-size: 1.8rem;
    }
    .page-promotions__section-subtitle {
        font-size: 0.95rem;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-title {
        font-size: 1.3rem;
    }
    .page-promotions__card-description {
        font-size: 0.9rem;
    }
    .page-promotions__cta-title {
        font-size: 1.6rem;
    }
    .page-promotions__cta-banner-section {
        flex-direction: column;
        padding: 30px;
    }
    .page-promotions__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer.open {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-promotions__section-title {
        font-size: 1.6rem;
    }
    .page-promotions__cta-title {
        font-size: 1.4rem;
    }
    .page-promotions__faq-question {
        font-size: 1rem;
    }
}