.page-promotions {
    background-color: #F4F7FB; /* Custom Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
    overflow-x: hidden; /* Prevent horizontal overflow for mobile */
}

/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, more bottom padding */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Main/Auxiliary colors as background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-visual {
    width: 100%;
    max-width: 1200px; /* Max width for the image container */
    margin-bottom: 20px; /* Space between image and content */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-promotions__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover; /* Ensure image covers the area */
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
    filter: none; /* No CSS filter */
}

.page-promotions__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Use clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    min-height: 44px; /* Touch target size */
    box-sizing: border-box;
    border: none;
}

.page-promotions__hero-cta:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

/* Grid Section */
.page-promotions__grid-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__grid-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
}

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

.page-promotions__promotion-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
    display: flex;
    flex-direction: column;
}

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

.page-promotions__promotion-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
    aspect-ratio: 16/9; /* Ensure cards have consistent image aspect ratio */
    filter: none; /* No CSS filter */
}

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to grow */
}

.page-promotions__card-cta {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start; /* Align CTA to the start */
    min-height: 44px; /* Touch target size */
    box-sizing: border-box;
    border: none;
}

.page-promotions__card-cta:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__faq-list {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-promotions__faq-item {
    border-bottom: 1px solid #D6E2FF; /* Border color */
    padding: 20px 25px;
}

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

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.is-active .page-promotions__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.page-promotions__faq-item.is-active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    opacity: 1;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-promotions__hero-section {
        flex-direction: row; /* Desktop: row layout */
        padding: 40px 20px;
        text-align: left;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .page-promotions__hero-visual {
        flex: 1;
        margin-bottom: 0;
        max-width: 600px; /* Adjust max width for desktop image */
    }

    .page-promotions__hero-content {
        flex: 1;
        max-width: 600px;
    }

    .page-promotions__hero-cta {
        align-self: flex-start; /* Align CTA to the start in desktop */
    }

    .page-promotions__promotions-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
    }
}

@media (min-width: 1024px) {
    .page-promotions__promotions-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns for large screens */
    }
}

/* Mobile specific rules for images (below 768px) */
@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__grid-section,
    .page-promotions__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr; /* Single column for small screens */
    }

    .page-promotions__hero-title {
        font-size: 2rem; /* Slightly smaller for mobile */
    }

    .page-promotions__grid-title,
    .page-promotions__faq-title {
        font-size: 1.8rem; /* Slightly smaller for mobile */
    }

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

    /* Ensure content area images are not smaller than 200px */
    .page-promotions__promotion-card img {
        min-width: 200px;
        min-height: 200px;
    }
    .page-promotions__hero-visual img {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Global image CSS constraints for content area (selectors targeting .page-promotions img) */
.page-promotions img {
    min-width: 200px;
    min-height: 200px;
    filter: none;
}

/* Ensure no width/height properties conflict with HTML attributes for layout */
.page-promotions__hero-visual img[width][height] {
    max-width: 100%;
    height: auto;
}

.page-promotions__promotion-card img[width][height] {
    max-width: 100%;
    height: auto;
}