:root {
    --fly88g-primary: #11A84E;
    --fly88g-secondary: #22C768;
    --fly88g-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fly88g-card-bg: #11271B;
    --fly88g-background: #08160F;
    --fly88g-text-main: #F2FFF6;
    --fly88g-text-secondary: #A7D9B8;
    --fly88g-border: #2E7A4E;
    --fly88g-glow: #57E38D;
    --fly88g-gold: #F2C14E;
    --fly88g-divider: #1E3A2A;
    --fly88g-deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--fly88g-text-main); /* Default text color for the page */
    background-color: var(--fly88g-background); /* Page background color */
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stacks image above content */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: var(--fly88g-background);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-promotions__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem); /* Responsive font size */
    color: var(--fly88g-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 1.1rem;
    color: var(--fly88g-text-secondary);
    margin-bottom: 30px;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-promotions__btn-primary {
    background: var(--fly88g-btn-gradient);
    color: var(--fly88g-text-main);
    border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--fly88g-glow);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--fly88g-primary);
    border: 2px solid var(--fly88g-primary);
}

.page-promotions__btn-secondary:hover {
    background: var(--fly88g-primary);
    color: var(--fly88g-text-main);
    box-shadow: 0 0 15px var(--fly88g-glow);
}

.page-promotions__section {
    padding: 80px 20px;
    background-color: var(--fly88g-background);
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--fly88g-gold);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__section-intro {
    font-size: 1.1rem;
    color: var(--fly88g-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__card {
    background-color: var(--fly88g-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--fly88g-border);
}

.page-promotions__card-image {
    width: 100%;
    max-width: 400px; /* Card image max width */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.6rem;
    color: var(--fly88g-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__card-description {
    font-size: 1rem;
    color: var(--fly88g-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1; /* Allows description to take available space */
}

.page-promotions__card-button {
    margin-top: auto; /* Pushes button to the bottom */
}

.page-promotions__cta-section {
    background-color: var(--fly88g-deep-green); /* Different background for CTA section */
}

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

.page-promotions__steps-list li {
    background-color: var(--fly88g-card-bg);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--fly88g-text-main);
    display: flex;
    align-items: center;
    border-left: 5px solid var(--fly88g-primary);
}

.page-promotions__steps-list li strong {
    color: var(--fly88g-gold);
    margin-right: 10px;
}

.page-promotions__steps-list li a {
    color: var(--fly88g-secondary);
    text-decoration: underline;
}

.page-promotions__steps-list li a:hover {
    color: var(--fly88g-gold);
}

.page-promotions__faq-section {
    padding-bottom: 80px;
}

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

.page-promotions__faq-item {
    background-color: var(--fly88g-card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--fly88g-border);
    color: var(--fly88g-text-main);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fly88g-text-main);
    list-style: none; /* For <summary> tag */
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--fly88g-primary);
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--fly88g-text-secondary);
}

.page-promotions__faq-answer p {
    margin: 0;
}

.page-promotions__final-cta {
    padding-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        max-width: 700px;
    }
    .page-promotions__main-title {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 10px 15px 40px;
    }
    .page-promotions__hero-content {
        padding: 0 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    .page-promotions__description {
        font-size: 1rem;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Limit button group width */
        margin: 0 auto;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }
    .page-promotions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 15px;
    }
    .page-promotions__section-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-promotions__card {
        padding: 20px;
    }
    .page-promotions__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__card-title {
        font-size: 1.4rem;
    }
    .page-promotions__card-description {
        font-size: 0.9rem;
    }
    .page-promotions__steps-list li {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    /* Enforce image responsiveness for all images */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers that might hold images/buttons/videos */
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper,
    .page-promotions__cta-buttons,
    .page-promotions__steps-list,
    .page-promotions__faq-list,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific override for hero-image-wrapper and hero-content to avoid double padding */
    .page-promotions__hero-image-wrapper,
    .page-promotions__hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    /* Video section top padding (small, not --header-offset) */
    .page-promotions__video-section {
        padding-top: 10px !important;
    }
}