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

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

.page-promotions__hero {
    position: relative;
    height: 450px; /* Adjust height for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #0A2463; /* Fallback for image */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.page-promotions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.7), rgba(255, 215, 0, 0.4));
    z-index: 2;
}

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

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

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

.page-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

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

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-promotions__btn--detail {
    background-color: #0A2463;
    color: #FFD700;
    border: 1px solid #0A2463;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--detail:hover {
    background-color: #1a3c7a;
    border-color: #1a3c7a;
    transform: translateY(-1px);
}

.page-promotions__btn--center {
    display: block;
    margin: 30px auto 0;
    max-width: 300px;
}

.page-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-promotions__intro,
.page-promotions__how-to-claim,
.page-promotions__terms,
.page-promotions__why-choose,
.page-promotions__faq,
.page-promotions__cta-final {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__intro {
    background-color: #f0f4f7;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__section-title .highlight {
    color: #FFD700;
}

.page-promotions__text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-promotions__category-list {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-promotions__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin: 0 20px 15px;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #FFD700;
}

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

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

.page-promotions__steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #333;
}

.page-promotions__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #0A2463;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
}

.page-promotions__list,
.page-promotions__advantages {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions__list li,
.page-promotions__advantages li {
    background-color: #f0f4f7;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #444;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq {
    background-color: #f0f4f7;
}

.page-promotions__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

.page-promotions__cta-final {
    background-color: #0A2463;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #fff;
}

.page-promotions__cta-final .page-promotions__text {
    color: #e0e0e0;
}

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

@media (max-width: 768px) {
    .page-promotions__hero {
        height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn {
        width: 80%;
        max-width: 250px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text {
        font-size: 0.95em;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__steps li {
        padding-left: 50px;
        font-size: 1em;
    }
    .page-promotions__steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        height: 300px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        width: 90%;
        padding: 10px 20px;
    }
    .page-promotions__card-image {
        height: 160px;
    }
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__card-description {
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
}