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

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

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

.page-promotions__center-content {
    text-align: center;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding: 60px 20px; /* Adjust padding as needed */
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--promotions-deep-green); /* A darker green for hero */
    overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it takes full width of its container */
    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 {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--promotions-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

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

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding and border are included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

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

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--promotions-glow-color); /* Use glow color for secondary text */
    border: 2px solid var(--promotions-glow-color);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--promotions-glow-color);
    color: var(--promotions-deep-green); /* Darker text on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section common styles */
.page-promotions__section {
    padding: 60px 0;
    text-align: left;
}

.page-promotions__overview-section {
    background-color: var(--promotions-bg-color);
}

.page-promotions__light-bg {
    background-color: var(--promotions-card-bg); /* Use card background for contrast */
    color: var(--promotions-text-main); /* Text main for light background */
}

.page-promotions__dark-bg {
    background-color: var(--promotions-deep-green);
    color: var(--promotions-text-main);
}

.page-promotions__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--promotions-text-main);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--promotions-glow-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-promotions__text-block {
    font-size: 1.05rem;
    color: var(--promotions-text-secondary);
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid layout for features/advantages */
.page-promotions__grid,
.page-promotions__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__grid-item,
.page-promotions__why-choose-item {
    background-color: var(--promotions-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--promotions-border-color);
    transition: transform 0.3s ease;
}

.page-promotions__grid-item:hover,
.page-promotions__why-choose-item:hover {
    transform: translateY(-10px);
}

.page-promotions__feature-image,
.page-promotions__why-choose-icon {
    width: 100%; /* Ensure images fill grid item width */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
}

/* Specific sizing for advantage icons, ensure min 200x200px */
.page-promotions__why-choose-icon {
    width: 200px; /* Fixed width for icon-like images */
    height: 200px; /* Fixed height for icon-like images */
    object-fit: contain; /* Ensure full image is visible */
    border-radius: 50%; /* Optional: for circular icons */
    padding: 10px; /* Add some padding if using border-radius */
    background-color: var(--promotions-deep-green);
    border: 2px solid var(--promotions-glow-color);
}


.page-promotions__feature-title,
.page-promotions__why-choose-title {
    font-size: 1.5rem;
    color: var(--promotions-gold-color); /* Gold for titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__feature-description,
.page-promotions__why-choose-item p {
    font-size: 1rem;
    color: var(--promotions-text-secondary);
}

/* Guide Section */
.page-promotions__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__guide-item {
    background-color: var(--promotions-card-bg);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--promotions-border-color);
}

.page-promotions__guide-step-title {
    font-size: 1.3rem;
    color: var(--promotions-gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__guide-item p {
    font-size: 1rem;
    color: var(--promotions-text-secondary);
}

.page-promotions__guide-item a {
    color: var(--promotions-glow-color);
    text-decoration: underline;
}

.page-promotions__guide-item a:hover {
    color: var(--promotions-gold-color);
}

/* Terms Section */
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__terms-item {
    background-color: var(--promotions-card-bg);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--promotions-border-color);
}

.page-promotions__terms-subtitle {
    font-size: 1.3rem;
    color: var(--promotions-gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__terms-item p {
    font-size: 1rem;
    color: var(--promotions-text-secondary);
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    background-color: var(--promotions-card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--promotions-border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--promotions-gold-color);
    outline: none;
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

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

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

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

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

    .page-promotions__section-title {
        font-size: 2rem;
    }

    .page-promotions__hero-section {
        padding: 40px 20px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px; /* Add side padding for mobile containers */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-promotions__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to button container */
        overflow: hidden !important;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-promotions__grid,
    .page-promotions__why-choose-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-promotions__grid-item,
    .page-promotions__why-choose-item {
        padding: 20px;
    }

    .page-promotions__feature-title,
    .page-promotions__why-choose-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .page-promotions__feature-description,
    .page-promotions__why-choose-item p {
        font-size: 0.9rem;
    }

    .page-promotions__guide-item,
    .page-promotions__terms-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .page-promotions__guide-step-title,
    .page-promotions__terms-subtitle {
        font-size: 1.1rem;
    }

    .page-promotions__guide-item p,
    .page-promotions__terms-item p {
        font-size: 0.9rem;
    }

    .page-promotions__faq-item summary {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-promotions__faq-toggle {
        font-size: 1.5rem;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    /* Images responsive for mobile */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__hero-image {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-promotions__feature-image {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-promotions__why-choose-icon {
        width: 100% !important; /* Allow it to scale */
        max-width: 200px !important; /* But keep a max width if desired */
        height: auto !important;
        object-fit: contain !important;
    }

    /* Video responsive for mobile - if any */
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions__video-section {
        padding-top: 10px !important;
    }
}