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

.page-promotions {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
}

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

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--background-color);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for the image wrapper */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-promotions__hero-content-wrapper {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.page-promotions__main-title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-promotions__lead-text {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.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: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-promotions__btn-secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.page-promotions__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
}

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

.page-promotions__deep-green-bg {
    background-color: var(--deep-green);
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-main);
}

.page-promotions__section-title--light {
    color: var(--text-main);
}

.page-promotions__text-block {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__text-block--light {
    color: var(--text-secondary);
}

.page-promotions__highlight {
    color: var(--gold-color);
    font-weight: 600;
}

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

.page-promotions__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid var(--border-color);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 25px;
}

.page-promotions__card .page-promotions__btn-secondary {
    margin-top: auto;
    align-self: center;
    margin-left: 0;
}

.page-promotions__promotion-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__promotion-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-promotions__promotion-image {
    width: 350px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.page-promotions__promotion-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-promotions__promotion-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promotions__step-card {
    padding: 30px;
    text-align: center;
}

.page-promotions__step-icon {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    background: rgba(var(--gold-color-rgb, 242, 193, 78), 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--gold-color);
}

.page-promotions__step-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-promotions__step-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.5;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-promotions__final-cta {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions__faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions__faq-item[open] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question:hover {
    background-color: rgba(var(--primary-color-rgb, 17, 168, 78), 0.1);
}

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

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-promotions__main-title {
        font-size: 2.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promotion-item {
        flex-direction: column;
    }
    .page-promotions__promotion-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-promotions__lead-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
    }
    .page-promotions__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promotions__hero-section,
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__hero-content-wrapper {
        margin-top: 20px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        padding: 12px 20px;
        font-size: 0.95em;
        width: 100%; /* Ensure full width on mobile */
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-promotions__btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__grid-three-col {
        grid-template-columns: 1fr;
    }
    .page-promotions__card {
        padding-bottom: 20px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__promotion-item {
        padding: 0;
    }
    .page-promotions__promotion-image {
        height: 200px;
    }
    .page-promotions__promotion-content {
        padding: 20px;
    }
    .page-promotions__promotion-title {
        font-size: 1.4em;
    }
    .page-promotions__promotion-description {
        font-size: 0.9em;
    }
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__step-card {
        padding: 25px;
    }
    .page-promotions__step-icon {
        font-size: 2em;
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9em;
    }
    .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-section,
    .page-promotions__hero-content-wrapper,
    .page-promotions__hero-image-wrapper,
    .page-promotions__promotion-item,
    .page-promotions__step-card,
    .page-promotions__faq-item,
    .page-promotions__cta-bottom,
    .page-promotions__final-cta,
    .page-promotions__grid-three-col,
    .page-promotions__promotion-list,
    .page-promotions__steps-grid,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-promotions__btn-container,
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .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;
    }
    .page-promotions__hero-section {
      padding-top: 10px !important;
    }
}