/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 2;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-promotions__hero-actions .page-promotions__btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__btn--primary {
    background-color: #FFCC00;
    color: #CC0000;
    border: 2px solid #FFCC00;
    font-weight: bold;
}

.page-promotions__btn--primary:hover {
    background-color: #e6b800;
    color: #a30000;
    transform: translateY(-3px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
}

.page-promotions__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-promotions__btn--tertiary {
    background-color: #CC0000;
    color: #fff;
    border: 2px solid #CC0000;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__btn--tertiary:hover {
    background-color: #a30000;
    transform: translateY(-2px);
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.7;
    z-index: 0;
    display: none; /* Hidden by default, only for decorative purposes */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-promotions__why-choose, .page-promotions__types, .page-promotions__how-to-claim, .page-promotions__latest-links, .page-promotions__details-list, .page-promotions__faq, .page-promotions__cta {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__why-choose .page-promotions__container, .page-promotions__how-to-claim .page-promotions__container, .page-promotions__latest-links .page-promotions__container, .page-promotions__faq .page-promotions__container, .page-promotions__cta .page-promotions__container {
    text-align: center;
}

.page-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promotions__list li {
    background-color: #fdf2e9;
    border-left: 5px solid #CC0000;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions__list li strong {
    color: #CC0000;
}

.page-promotions__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__promo-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    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.12);
}

.page-promotions__card-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions__steps-list li {
    counter-increment: step-counter;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #444;
}

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #CC0000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__claim-btn {
    margin-top: 20px;
}

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

.page-promotions__detail-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__detail-card-title {
    font-size: 1.6em;
    color: #CC0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__detail-card-title a {
    color: #CC0000;
    text-decoration: none;
}

.page-promotions__detail-card-title a:hover {
    text-decoration: underline;
}

.page-promotions__detail-card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__detail-card-image {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
}

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

.page-promotions__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #CC0000;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    color: #CC0000;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-promotions__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
    color: #555;
}

.page-promotions__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

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

.page-promotions__cta-actions .page-promotions__btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid, .page-promotions__promo-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-actions .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__why-choose, .page-promotions__types, .page-promotions__how-to-claim, .page-promotions__latest-links, .page-promotions__details-list, .page-promotions__faq, .page-promotions__cta {
        padding: 40px 0;
    }
    .page-promotions__list li, .page-promotions__steps-list li, .page-promotions__faq-question {
        font-size: 1em;
    }
    .page-promotions__hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__hero-actions .page-promotions__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-promotions__grid, .page-promotions__promo-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__steps-list li {
        padding-left: 50px;
    }
    .page-promotions__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-promotions__faq-question {
        padding: 15px;
    }
    .page-promotions__faq-question::after {
        right: 15px;
    }
}