.page-promotions {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* Roboto-like font */
}

.page-promotions__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #100224; /* Dark background for hero */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px;
    filter: none !important;
}

.page-promotions__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    text-align: center;
}

.page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 300px;
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #A5C4FF; /* Glow */
}

.page-promotions__promotion-list-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 15px;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 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.05);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
}

.page-promotions__card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.page-promotions__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none !important;
}

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

.page-promotions__card-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-promotions__card-title a {
    color: #000000; /* Custom Color_1776249996415 */
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    color: #2F6BFF; /* Main color on hover */
    text-decoration: underline;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    line-height: 1.5;
    margin-bottom: 15px;
}

.page-promotions__card-date {
    font-size: 0.85em;
    color: #6FA3FF; /* Auxiliary color for dates */
    display: block;
    margin-bottom: 15px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    transition: background-color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px 15px;
}

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

.page-promotions__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
    font-size: 1.1em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions__faq-answer {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions__hero-section {
        padding-bottom: 20px;
    }
    .page-promotions__hero-image-wrapper {
        aspect-ratio: 16/9;
        height: auto;
    }
    .page-promotions__hero-image {
        min-height: 200px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__promotion-cards {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-image-wrapper {
        height: 200px;
    }
    .page-promotions__card-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
    .page-promotions__promotion-list-section,
    .page-promotions__faq-section {
        padding: 15px;
        margin: 30px auto;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
}

@media (max-width: 549px) {
    .page-promotions__hero-content {
        padding: 15px 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__cta-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__card-description,
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
    }
}