:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --header-offset: 120px; /* Default for desktop */
}

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

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #222222, #0A0A0A);
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__hero-image-wrapper {
    margin-top: 30px; /* Space between content and image */
    position: relative;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.05em;
}

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

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px; /* Ensure minimum button size */
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-promotions__btn-secondary:hover {
    background: var(--secondary-color);
    color: #0A0A0A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

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

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

.page-promotions__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: var(--text-main-color);
}

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

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-main-color);
}

.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: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-main-color);
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

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

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

.page-promotions__split-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-promotions__text-block {
    flex: 1;
    color: var(--text-main-color);
}

.page-promotions__image-block {
    flex: 1;
    text-align: center;
}

.page-promotions__image-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__sub-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__numbered-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    padding-left: 30px;
    position: relative;
    color: var(--text-main-color);
}

.page-promotions__numbered-list li:before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: #0A0A0A;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.page-promotions__margin-top {
    margin-top: 40px;
}

.page-promotions__faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.page-promotions__faq-item {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main-color);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--text-main-color);
}

.page-promotions__faq-question:hover {
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-main-color);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px;
}

.page-promotions__faq-answer p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-main-color);
}

.page-promotions__cta-buttons--center {
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-promotions__split-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__split-content.page-promotions__reverse-on-mobile {
        flex-direction: column-reverse;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 100px; /* Adjust for mobile header height */
    }

    .page-promotions__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        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;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__card-image {
        height: auto; /* Allow image to scale */
    }

    .page-promotions__numbered-list li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .page-promotions__numbered-list li:before {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .page-promotions__hero-description {
        font-size: 0.9rem;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 7vw, 1.8rem);
    }

    .page-promotions__section-description {
        font-size: 0.9rem;
    }

    .page-promotions__sub-title {
        font-size: 1.5rem;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        font-size: 1rem;
        padding: 12px 20px;
    }
}