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

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

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

.page-promotions__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue for contrast */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0056b3; /* Darker blue text for contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn--secondary {
    background-color: #007BFF; /* Blue button */
    color: #ffffff;
    border: 1px solid #007BFF;
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Main blue color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__text {
    font-size: 1.1em;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.page-promotions__intro .page-promotions__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__category-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__category-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__category-desc {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 25px;
    min-height: 90px; /* Ensure consistent height for descriptions */
}

/* Details List Section */
.page-promotions__details-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__detail-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-promotions__detail-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__detail-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions__detail-title a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-promotions__detail-desc {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 20px;
}

/* How-to Section */
.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-promotions__steps-list li {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #007BFF;
    color: #ffffff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions__link--inline {
    color: #007BFF;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__link--inline:hover {
    color: #0056b3;
}

/* FAQ Section */
.page-promotions__faq-items {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f8ff; /* Light blue background for question */
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

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

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-promotions__faq-answer p {
    margin-top: 0;
    color: #495057;
}

/* Final CTA Section */
.page-promotions__cta-final {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__cta-final .page-promotions__text {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-final .page-promotions__image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: auto;
    opacity: 0.15;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid, .page-promotions__details-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__hero-image, .page-promotions__cta-final .page-promotions__image {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__steps-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions__steps-list li::before {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__category-item, .page-promotions__detail-item, .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__category-desc {
        min-height: auto;
    }
}