:root {
    --main-color: #113B7A;
    --accent-color: #1D5FD1;
    --button: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-b-g: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border: #244D84;
    --glow: #4FA8FF;
    --gold: #F2C14E;
    --divider: #1B3357;
    --deep-navy: #08162B;
}

.page-promotions {
    background-color: var(--deep-navy);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

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

.page-promotions__section-title {
    color: var(--gold); /* Using gold for main titles */
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding: 0; /* Adjust padding as content is inside */
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    background-color: var(--deep-navy);
}

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

.page-promotions__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Adjust aspect ratio for a wider banner look */
}

.page-promotions__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px; /* Space below image */
}

.page-promotions__main-title {
    color: var(--text-main);
    font-size: clamp(2.2rem, 5vw, 3rem); /* Adjusted for H1, not too large */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 90%; /* Prevent H1 from being too wide on large screens */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 80%; /* Prevent description from being too wide */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    background: var(--button);
    color: var(--text-main);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Promotions Grid */
.page-promotions__promotions-grid {
    background-color: var(--card-b-g);
    border-radius: 10px;
    margin-top: 40px;
}

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

.page-promotions__promotion-card {
    background-color: var(--deep-navy);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.page-promotions__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text-main);
}

.page-promotions__card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--glow);
}

.page-promotions__card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background: var(--button);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start; /* Align button to start */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: var(--deep-navy);
}

.page-promotions__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions__step-card {
    background-color: var(--card-b-g);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-card img {
    width: 200px; /* Min size 200x200 */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make them circular */
    border: 3px solid var(--border);
    padding: 5px;
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-promotions__step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.page-promotions__cta-button--bottom {
    margin-top: 40px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--card-b-g);
    border-radius: 10px;
    margin-top: 40px;
}

.page-promotions__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: var(--deep-navy);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.page-promotions__faq-question {
    width: 100%;
    background-color: var(--card-b-g);
    color: var(--text-main);
    padding: 15px 20px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--divider);
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--glow);
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

.page-promotions__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.page-promotions__faq-answer p {
    padding: 15px 0;
}

/* Final CTA Section */
.page-promotions__final-cta {
    text-align: center;
    background-color: var(--deep-navy);
    padding: 60px 20px;
}

.page-promotions__final-cta-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-promotions__hero-section {
        flex-direction: column; /* Keep column for desktop, image is above content */
    }

    .page-promotions__hero-content {
        margin-top: 30px;
    }

    .page-promotions__hero-visual img {
        aspect-ratio: 1920/675; /* Desktop aspect ratio */
    }
}

@media (max-width: 768px) {
    .page-promotions section {
        padding: 30px 15px;
    }

    .page-promotions__hero-visual img,
    .page-promotions__promotion-card img,
    .page-promotions__step-card img {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-promotions__grid-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-promotions__promotion-card img {
         /* Slightly smaller on mobile */
    }

    .page-promotions__step-card img {
        
        
    }
}

@media (max-width: 480px) {
    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-promotions__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-promotions__card-title {
        font-size: 1.1rem;
    }

    .page-promotions__card-description {
        font-size: 0.85rem;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .page-promotions__faq-answer p {
        padding: 10px 0;
    }
}