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

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

.page-promotions .highlight {
    color: #007bff;
    font-weight: bold;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-promotions__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

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

.page-promotions__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-promotions__btn--primary {
    background-color: #ffc107;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--details {
    background-color: #f0f0f0;
    color: #007bff;
    padding: 8px 20px;
    font-size: 0.9em;
    border: 1px solid #ddd;
    border-radius: 25px;
}

.page-promotions__btn--details:hover {
    background-color: #e2e6ea;
    color: #0056b3;
}

/* General Section Styles */
.page-promotions__section {
    padding: 60px 0;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

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

.page-promotions__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Offers List */
.page-promotions__offers-list {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__offer-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-promotions__offer-content {
    padding: 30px;
}

.page-promotions__offer-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__offer-title a {
    color: inherit;
    text-decoration: none;
}

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

.page-promotions__offer-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
}

/* Tips Section */
.page-promotions__tips .page-promotions__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions__tips .page-promotions__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 45px;
    font-size: 1.05em;
    color: #444;
}

.page-promotions__tips .page-promotions__list li::before {
    content: '\2713'; /* Checkmark */
    color: #ffc107;
    font-size: 1.4em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

/* CTA Bottom */
.page-promotions__cta-bottom {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

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

.page-promotions__cta-bottom .page-promotions__section-title::after {
    background-color: #ffc107;
}

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

/* Responsibility Section */
.page-promotions__responsibility {
    background-color: #f0f8ff;
    border-top: 1px solid #e0e0e0;
}

.page-promotions__responsibility .page-promotions__section-title {
    color: #007bff;
}

/* FAQ Section */
.page-promotions__faq {
    padding-bottom: 80px;
}

.page-promotions__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #007bff;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f7f7f7;
    border-bottom: 1px solid #eee;
    position: relative;
}

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

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

.page-promotions__faq-answer {
    font-size: 1em;
    color: #555;
    padding: 0 25px 20px;
    margin: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-answer.active {
    display: block;
    max-height: 500px; /* Arbitrary large value for smooth transition */
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__title {
        font-size: 2.5em;
    }

    .page-promotions__subtitle {
        font-size: 1.1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__offer-card {
        flex-direction: column;
    }

    .page-promotions__offer-image {
        height: 200px;
    }

    .page-promotions__offer-content {
        padding: 20px;
    }

    .page-promotions__offer-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

    .page-promotions__title {
        font-size: 2em;
    }

    .page-promotions__subtitle {
        font-size: 1em;
    }

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

    .page-promotions__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

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

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__text {
        font-size: 0.95em;
    }

    .page-promotions__offers-list {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .page-promotions__offer-image {
        height: 180px;
    }

    .page-promotions__offer-content {
        padding: 15px;
    }

    .page-promotions__offer-title {
        font-size: 1.3em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions__faq-question::after {
        right: 20px;
    }

    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__title {
        font-size: 1.8em;
    }

    .page-promotions__subtitle {
        font-size: 0.9em;
    }

    .page-promotions__btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

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

    .page-promotions__section-title {
        font-size: 1.5em;
    }

    .page-promotions__text {
        font-size: 0.9em;
    }

    .page-promotions__offer-image {
        height: 150px;
    }

    .page-promotions__offer-title {
        font-size: 1.2em;
    }

    .page-promotions__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-promotions__faq-question::after {
        right: 15px;
        font-size: 1.2em;
    }
}