:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bg-card: #11271B;
    --bg-main-page: #08160F; /* This is specific for page-promotions main content background */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for the page, assuming dark body bg from shared */
    background-color: var(--bg-main-page); /* Page specific background */
}

/* Ensure content is not covered by fixed header, but relying on body padding-top from shared.css */
/* No padding-top: var(--header-offset) here */
.page-promotions__hero-section,
.page-promotions__introduction-section,
.page-promotions__types-section,
.page-promotions__guide-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 60px 20px; /* General padding for sections */
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 60px; /* Adjust as needed */
    background-color: var(--bg-main-page); /* Ensure it has a background */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for large screens */
    overflow: hidden;
    position: relative;
}

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

.page-promotions__hero-content {
    position: relative; /* Ensure content is above image but not overlapping */
    max-width: 900px;
    margin-top: 40px; /* Space between image and text */
    padding: 0 20px;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font-size with clamp */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add horizontal padding for general containers */
    box-sizing: border-box;
}

.page-promotions__text-block {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Ensure button adapts to container */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* White text on dark button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--gold-color); /* Gold text on transparent/dark background */
    border: 2px solid var(--border-color);
}

.page-promotions__btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-main);
}

/* Section Specific Styles */
.page-promotions__introduction-section {
    background-color: var(--bg-main-page); /* Use page main background */
    color: var(--text-secondary);
}

.page-promotions__types-section {
    background-color: var(--bg-card); /* Darker background for card section */
}

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

.page-promotions__card {
    background-color: var(--deep-green); /* Card background */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__guide-section {
    background-color: var(--bg-main-page);
    color: var(--text-secondary);
}

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

.page-promotions__guide-item {
    background-color: var(--deep-green);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.page-promotions__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: auto; /* Push to bottom of guide item */
    width: 100%;
}

.page-promotions__terms-section {
    background-color: var(--bg-card);
    color: var(--text-secondary);
}

.page-promotions__inline-link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-promotions__inline-link:hover {
    color: var(--glow-color);
}

.page-promotions__why-choose-section {
    background-color: var(--bg-main-page);
    color: var(--text-secondary);
}

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

.page-promotions__feature-item {
    background-color: var(--deep-green);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.page-promotions__feature-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__faq-section {
    background-color: var(--bg-card);
}

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

.page-promotions__faq-item {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold-color);
    background-color: var(--deep-green);
    position: relative;
    user-select: none;
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-question::marker {
    display: none;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold-color);
    margin-left: 15px;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    content: "−";
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background-color: var(--bg-card); /* Slightly different background for answer */
    border-top: 1px solid var(--divider-color);
}

.page-promotions__cta-section {
    background-color: var(--bg-main-page);
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-promotions__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles offset */
    }
    .page-promotions__hero-content {
        margin-top: 30px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__button-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__button-group .page-promotions__cta-button {
        width: 100%;
    }

    .page-promotions__section {
        padding: 30px 15px;
    }
    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-promotions__container {
        padding: 0 10px;
    }
    .page-promotions__grid,
    .page-promotions__guide-steps,
    .page-promotions__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__card,
    .page-promotions__guide-item,
    .page-promotions__feature-item,
    .page-promotions__cta-container,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px;
        padding-right: 10px;
        overflow: hidden !important; /* Prevent content overflow */
    }
    .page-promotions__card-image,
    .page-promotions__guide-image,
    .page-promotions__cta-image {
        height: auto; /* Allow image height to adjust */
        max-height: 250px; /* Max height for mobile to prevent excessively tall images */
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
    }
}

/* Color Contrast Specifics */
/* Assuming body background is dark from shared.css (var(--bg-main)) */
/* All text is already set to --text-main or --text-secondary which are light colors */
/* Card backgrounds are --deep-green or --bg-card, which are dark */
/* Buttons have good contrast with text-main */

/* No filter property on images */
.page-promotions img {
    filter: none; /* Explicitly ensure no filter */
}