.page-promotions {
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small padding-top as per rule */
    background-color: #100224; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height to maintain aspect ratio without making it too tall */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* No fixed large font-size, rely on clamp if needed, otherwise weight/line-height */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.page-promotions__cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff9500, #ff5e3a);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__promotions-grid-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
}

.page-promotions__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #26A9E0;
}

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

.page-promotions__promotion-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

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

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #26A9E0;
}

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

.page-promotions__card-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to start */
}

.page-promotions__card-button:hover {
    background-color: #1a8cc7;
}

.page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 960px;
    margin: 0 auto;
    background-color: #F0F8FF; /* Light blue background for FAQ */
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    color: #26A9E0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 0 20px 20px;
}

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

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

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

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promotion-image {
        height: 200px;
    }

    .page-promotions__faq-question {
        font-size: 1.1rem;
    }

    .page-promotions__promotions-grid-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }

    /* Enforce image responsiveness for mobile */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not too small */
    .page-promotions__promotion-image, .page-promotions__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-promotions__promotion-card .page-promotions__promotion-image {
        width: 100%; /* Ensure it fills card width */
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Minimum height for content images */
    }
    .page-promotions__hero-image {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
}

/* Ensure image sizes for all content images are at least 200px */
.page-promotions__hero-image,
.page-promotions__promotion-image {
    min-width: 200px;
    min-height: 200px;
}

/* Color contrast check: Example for text on light background */
.page-promotions__card-text,
.page-promotions__faq-answer p {
    color: #555555; /* Ensure good contrast with #F8F8F8 or #FFFFFF */
}

.page-promotions__main-title,
.page-promotions__section-title,
.page-promotions__card-title,
.page-promotions__faq-question {
    color: #26A9E0; /* Ensure good contrast with white/light backgrounds */
}

.page-promotions__description {
    color: #E0E0E0; /* Good contrast with #100224 background */
}

.page-promotions__cta-button,
.page-promotions__card-button {
    color: #FFFFFF; /* Good contrast with orange gradient or #26A9E0 */
}

/* Custom colors */
.page-promotions__cta-button {
    background: linear-gradient(90deg, #EA7C07, #ff5e3a); /* Using Login color #EA7C07 */
}

.page-promotions__cta-button:hover {
    background: linear-gradient(90deg, #d46a06, #e65231); /* Slightly darker on hover */
}

.page-promotions {
    background-color: #FFFFFF; /* Background color */
}