/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Body background is dark (#121212), so text should be light */
    line-height: 1.6;
    background-color: transparent; /* Main content background should be transparent to show body background */
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    color: #ffffff;
    box-sizing: border-box;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffc107; /* Auxiliary color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.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.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #007bff;
    margin-right: 15px;
}

.page-promotions__btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #ffc107; /* Auxiliary brand color */
    border: 2px solid #ffc107;
}

.page-promotions__btn-secondary:hover {
    background-color: #ffc107;
    color: #121212;
}

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

.page-promotions__container {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for sections on dark body */
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #ffc107;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions__text-block strong {
    color: #ffc107;
}

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

.page-promotions__promo-card {
    background-color: rgba(0, 123, 255, 0.1); /* Light transparent primary color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

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

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

.page-promotions__card-title {
    font-size: 1.6em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-promotions__ordered-list, .page-promotions__unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions__ordered-list li, .page-promotions__unordered-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
}

.page-promotions__ordered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-promotions__unordered-list li::before {
    content: '•';
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

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

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

.page-promotions__faq-item {
    background-color: rgba(0, 123, 255, 0.15); /* Slightly darker transparent primary color for FAQ */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.4);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #007bff; /* Primary color for question header */
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #0056b3;
}

.page-promotions__faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2em;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05); /* Light transparent background for answer */
    color: #e0e0e0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 20px 25px !important;
}

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

.page-promotions__cta-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background-color: #1a1a1a; /* Dark background for CTA */
    border-radius: 10px;
    color: #ffffff;
}

.page-promotions__cta-image {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #ffc107;
}

.page-promotions__cta-content {
    max-width: 50%;
    text-align: left;
}

.page-promotions__cta-title {
    font-size: 2.2em;
    color: #ffc107;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions__btn-cta {
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__cta-section {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__cta-image {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .page-promotions__cta-content {
        max-width: 90%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        min-height: 400px;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__btn-primary, .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 15px; /* Stack buttons */
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-promotions__content-area {
        padding: 40px 15px;
    }
    .page-promotions__container {
        padding: 25px;
        margin-bottom: 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-promotions__text-block {
        font-size: 0.95em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-promotions__faq-question h3 {
        font-size: 1.1em;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px !important;
    }
    .page-promotions__cta-section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions__cta-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
    }
    .page-promotions__cta-content {
        max-width: 100%;
        text-align: center;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific override for hero section padding to avoid double */
    .page-promotions__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-promotions__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}