:root {
    --color-primary: #11A84E; /* Main color */
    --color-secondary: #22C768; /* Auxiliary color */
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

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

/* General container for content sections */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-promotions__section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: 700;
    line-height: 1.2;
}

/* Text blocks for general paragraphs */
.page-promotions__text-block {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

/* CTA Buttons */
.page-promotions__cta-button,
.page-promotions__btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* For responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-promotions__cta-button:hover,
.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, var(--color-button-gradient-end) 0%, var(--color-button-gradient-start) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--large {
    font-size: 1.3rem;
    padding: 16px 35px;
}

.page-promotions__cta-button--final {
    margin-top: 30px;
    font-size: 1.4rem;
    padding: 18px 40px;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0; /* Small padding, body handles header offset */
    overflow: hidden;
    background-color: var(--color-deep-green); /* Fallback background */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

.page-promotions__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    margin-top: -80px; /* Pull content up over image slightly for visual flow */
    position: relative;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-promotions__description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text-main);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

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

.page-promotions__feature-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Promotion Types Section */
.page-promotions__types-section {
    padding: 60px 0;
    background-color: var(--color-deep-green);
}

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

.page-promotions__promo-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promotions__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__promo-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Guide Section */
.page-promotions__guide-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

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

.page-promotions__step-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    padding-top: 60px;
}

.page-promotions__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    border: 3px solid var(--color-background);
    box-shadow: 0 0 0 5px var(--color-divider);
}

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

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

.page-promotions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 60px 0;
    background-color: var(--color-deep-green);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

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

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

.page-promotions__terms-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.page-promotions__faq-list {
    margin-top: 30px;
}

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

.page-promotions__faq-item summary {
    display: block; /* For details tag */
    list-style: none;
}

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold);
    cursor: pointer;
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: var(--color-deep-green);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    border-bottom: 1px solid var(--color-border);
}

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

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 15px;
    line-height: 1;
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    background-color: var(--color-card-bg);
    border-top: none;
}

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

.page-promotions__support-cta {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__support-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    border-radius: 8px;
}

.page-promotions__support-text {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Conclusion Section */
.page-promotions__conclusion-section {
    padding: 60px 0 80px;
    background-color: var(--color-deep-green);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        margin-top: -60px;
    }
    .page-promotions__main-title {
        font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    }
    .page-promotions__description {
        font-size: clamp(1rem, 2.2vw, 1.3rem);
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__hero-image-wrapper {
        max-height: 400px;
    }

    .page-promotions__hero-content {
        margin-top: -40px;
        padding: 0 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions__description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 25px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-promotions__cta-button,
    .page-promotions__btn-primary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 1rem !important;
    }

    .page-promotions__cta-wrapper {
        padding: 0 15px;
    }

    .page-promotions__promo-image {
        height: 200px;
    }

    .page-promotions__promo-content {
        padding: 20px;
    }

    .page-promotions__promo-title {
        font-size: 1.3rem;
    }

    .page-promotions__step-card {
        padding: 50px 20px 30px;
    }

    .page-promotions__faq-question {
        font-size: 1.05rem;
        padding: 18px 20px;
    }

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

    .page-promotions__support-image {
        max-width: 300px;
    }

    /* Images responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper,
    .page-promotions__promo-card,
    .page-promotions__step-card,
    .page-promotions__terms-item,
    .page-promotions__faq-item,
    .page-promotions__support-cta,
    .page-promotions__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding for content inside full-width containers */
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Override specific elements that should not have extra padding */
    .page-promotions__hero-section,
    .page-promotions__hero-image-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-promotions__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }
    .page-promotions__cta-buttons {
      display: flex;
      flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-image-wrapper {
        max-height: 250px;
    }
    .page-promotions__hero-content {
        margin-top: -20px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .page-promotions__description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    .page-promotions__feature-card,
    .page-promotions__promo-card,
    .page-promotions__step-card,
    .page-promotions__terms-item,
    .page-promotions__faq-item,
    .page-promotions__support-cta {
        padding: 20px;
    }
    .page-promotions__step-card {
        padding-top: 50px;
    }
    .page-promotions__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        top: -15px;
    }
}