/* General Page Styling */
.page-promotions {
    padding-top: 10px; /* Small top padding for content below header */
    background-color: #F3F3F3;
    color: #404040;
    font-family: Arial, sans-serif;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #404040;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #025BE8; /* Auxiliary color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background-color: #1266EC; /* Slightly darker blue or register color */
}

.page-promotions__cta-button--center {
    display: block;
    margin: 40px auto;
}

/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #191E2D; /* Dark background for hero */
    padding-bottom: 50px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
}

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

.page-promotions__hero-content {
    max-width: 900px;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 30px;
}

.page-promotions__main-title {
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 90%; /* Constraint for H1 font size */
    margin-left: auto;
    margin-right: auto;
    /* Use clamp for responsive font size if needed, otherwise rely on max-width and padding */
    font-size: clamp(2.5em, 5vw, 3.5em);
}

.page-promotions__hero-description {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Offers Overview Section */
.page-promotions__offers-overview {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-promotions__feature-item {
    background-color: #F3F3F3;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-promotions__feature-title {
    font-size: 1.4em;
    color: #025BE8; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #404040;
}

/* Featured Offers Section */
.page-promotions__featured-offers {
    padding: 60px 0;
    background-color: #F3F3F3;
}

.page-promotions__offer-cards-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 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for visual 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.3em;
    color: #404040;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #404040;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: block;
    background-color: #025BE8;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
    background-color: #1266EC;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-promotions__step-item {
    background-color: #F3F3F3;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #025BE8;
    margin-bottom: 15px;
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: #404040;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #404040;
}

/* Why Choose Us Section */
.page-promotions__why-choose-us {
    padding: 60px 0;
    background-color: #191E2D; /* Dark background */
    color: #FFFFFF;
}

.page-promotions__why-choose-us .page-promotions__section-title {
    color: #FFFFFF;
}

.page-promotions__why-choose-us .page-promotions__section-description {
    color: #E5E5E5;
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 600px;
}

.page-promotions__benefit-item {
    font-size: 1.1em;
    color: #E5E5E5;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.page-promotions__benefit-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #025BE8; /* Auxiliary color */
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: #F3F3F3;
}

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #404040;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #404040;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-content {
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__section-description {
        font-size: 0.95em;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__features-grid,
    .page-promotions__offer-cards-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
    }

    .page-promotions__card-image {
        height: 200px; /* Adjust height for mobile */
    }

    .page-promotions__card-title {
        font-size: 1.15em;
    }

    .page-promotions__card-description {
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .page-promotions__feature-title,
    .page-promotions__step-title,
    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__feature-text,
    .page-promotions__step-description,
    .page-promotions__benefit-item,
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }

    /* Ensure all images in content area are responsive and not smaller than 200px display size */
    .page-promotions__offer-card img, 
    .page-promotions__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.8em, 9vw, 2.5em);
    }
    .page-promotions__cta-button--center {
        margin: 20px auto;
    }
}