:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --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 {
    background-color: var(--color-background); /* #08160F */
    color: var(--color-text-main); /* #F2FFF6 */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section--dark {
    background-color: var(--color-deep-green); /* #0A4B2C */
    color: var(--color-text-main);
}

.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4 {
    color: var(--color-gold); /* #F2C14E */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-glow); /* #57E38D */
}

.page-promotions h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.3;
    margin-top: 40px;
}

.page-promotions h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    color: var(--color-text-main);
}

.page-promotions p {
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.page-promotions a {
    color: var(--color-gold); /* #F2C14E */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions a:hover {
    color: var(--color-glow); /* #57E38D */
    text-decoration: underline;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 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-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-promotions__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-promotions__hero-section {
    position: relative;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text contrast */
    display: block;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions__hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-main);
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions__content-image {
    margin-top: 40px;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    display: block;
}

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

.page-promotions__promotion-card {
    background-color: var(--color-card-bg); /* #11271B */
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border); /* #2E7A4E */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

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

.page-promotions__promotion-card h3 {
    margin-top: 0;
    color: var(--color-gold);
    font-size: 1.4rem;
}

.page-promotions__promotion-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    flex-grow: 1;
}

.page-promotions__promotion-card .page-promotions__btn {
    width: 100%;
    margin-top: 20px;
    font-size: 1rem;
    padding: 12px 20px;
}

.page-promotions__guide-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-promotions__guide-step {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(25% - 30px); /* 4 items per row on desktop */
    min-width: 280px;
    border: 1px solid var(--color-border);
}

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

.page-promotions__guide-step h3 {
    color: var(--color-glow);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-promotions__guide-step p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.page-promotions__video-section {
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
}

.page-promotions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-gold);
    width: 100%; /* Desktop width constraint */
    box-sizing: border-box;
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    cursor: pointer;
}

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

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-gold);
    transition: background-color 0.3s ease;
}

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

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

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

.page-promotions__faq-answer {
    padding: 0 25px 18px 25px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    max-height: 0; /* Hidden by default for JS toggle */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 10px;
}

/* For <details> tag, override default styles */
.page-promotions__faq-item[open] .page-promotions__faq-answer {
    max-height: none; /* Let browser handle height */
    padding-top: 10px;
}

.page-promotions__faq-item summary {
    list-style: none;
}

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

.page-promotions__final-cta-section {
    background-color: var(--color-deep-green);
    padding: 80px 0;
    text-align: center;
}

.page-promotions__final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.page-promotions__final-cta-image {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: block;
}

@media (max-width: 1024px) {
    .page-promotions__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__guide-step {
        flex: 1 1 calc(33% - 30px);
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
        padding-top: 10px !important;
    }

    .page-promotions__hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-promotions__hero-content p {
        font-size: 1rem;
    }

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

    .page-promotions h2 {
        font-size: clamp(1.8rem, 7vw, 2rem);
    }

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__guide-steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions__guide-step {
        width: 100%;
        max-width: 400px;
    }

    .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__promotion-card,
    .page-promotions__guide-step,
    .page-promotions__faq-list,
    .page-promotions__final-cta-section,
    .page-promotions__features-grid,
    .page-promotions__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .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__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;
    }
    
    .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;
        display: flex;
        flex-direction: column;
    }
}