.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, main padding from body */
}

.page-promotions__hero-section {
    position: relative;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    background-color: #FFFFFF; /* Fallback for content background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions__hero-content {
    padding: 40px;
    text-align: center;
    background-color: #FFFFFF; /* Card BG */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-promotions__offers-section {
    max-width: 1390px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-promotions__offer-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

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

.page-promotions__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.5em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    font-size: 0.95em;
}

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

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

.page-promotions__faq-section {
    max-width: 1390px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions__faq-item {
    background-color: #F4F7FB; /* Background */
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #D6E2FF; /* Border */
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__faq-answer {
    color: #1F2D3D; /* Text Main */
    font-size: 1em;
}

.page-promotions__cta-bottom {
    text-align: center;
    max-width: 1390px;
    margin: 40px auto 60px auto;
    padding: 50px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__cta-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__cta-text {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        padding: 30px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: clamp(1.5em, 3.5vw, 2em);
    }
    .page-promotions__offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        margin-bottom: 30px;
        border-radius: 0;
    }
    .page-promotions__hero-content {
        padding: 20px;
        border-radius: 0;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }
    .page-promotions__description {
        font-size: 0.95em;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .page-promotions__offers-section, .page-promotions__faq-section, .page-promotions__cta-bottom {
        margin: 30px auto;
        padding: 30px 15px;
        border-radius: 0;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: clamp(1.4em, 5vw, 1.8em);
        margin-bottom: 30px;
    }
    .page-promotions__offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-promotions__offer-card {
        margin: 0;
    }
    .page-promotions__offer-image {
        max-width: 100%;
        height: auto; /* Ensure images don't overflow */
    }
    .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
    .page-promotions__cta-text {
        font-size: 1em;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.4em, 7vw, 1.8em);
    }
    .page-promotions__description {
        font-size: 0.9em;
    }
    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__offers-section, .page-promotions__faq-section, .page-promotions__cta-bottom {
        padding: 25px 10px;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: clamp(1.2em, 6vw, 1.6em);
        margin-bottom: 25px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__card-text {
        font-size: 0.9em;
    }
    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        font-size: 0.85em;
    }
    .page-promotions__cta-button--large {
        padding: 12px 25px;
        font-size: 0.95em;
    }
}