/* style/promotions-limited-time-preview.css */
.page-promotions-limited-time-preview {
    font-family: 'Arial', sans-serif;
    color: #1A2B4C; /* Dark blue for main text */
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-limited-time-preview__highlight {
    color: #FFD700; /* Gold for highlights */
    font-weight: bold;
}

.page-promotions-limited-time-preview__highlight--light {
    color: #FFD700; /* Gold for highlights on dark background */
}

.page-promotions-limited-time-preview__section {
    padding: 60px 0;
}

.page-promotions-limited-time-preview__section--dark {
    background-color: #1A2B4C; /* Dark blue background */
    color: #ffffff;
}

.page-promotions-limited-time-preview__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-limited-time-preview__section-title--light {
    color: #FFD700;
}

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

.page-promotions-limited-time-preview__section-title--light::after {
    background-color: #ffffff;
}

.page-promotions-limited-time-preview__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #1A2B4C;
}

.page-promotions-limited-time-preview__text--light {
    color: #ffffff;
}

.page-promotions-limited-time-preview__link-inline {
    color: #1A2B4C;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-limited-time-preview__link-inline:hover {
    color: #FFD700;
}

.page-promotions-limited-time-preview__link-inline--light {
    color: #FFD700;
}

.page-promotions-limited-time-preview__link-inline--light:hover {
    color: #ffffff;
}

/* Hero Section */
.page-promotions-limited-time-preview__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #3A506B);
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-limited-time-preview__hero-section .page-promotions-limited-time-preview__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions-limited-time-preview__hero-content {
    max-width: 800px;
}

.page-promotions-limited-time-preview__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-promotions-limited-time-preview__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-limited-time-preview__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-limited-time-preview__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-promotions-limited-time-preview__button--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

.page-promotions-limited-time-preview__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-limited-time-preview__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-limited-time-preview__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
}

.page-promotions-limited-time-preview__hero-image-wrapper {
    margin-top: 40px;
    max-width: 800px;
    width: 100%;
}

.page-promotions-limited-time-preview__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-promotions-limited-time-preview__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-preview__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-preview__feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-limited-time-preview__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-promotions-limited-time-preview__feature-title {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.page-promotions-limited-time-preview__feature-description {
    font-size: 1em;
    color: #333;
}

.page-promotions-limited-time-preview__image-full-width {
    margin-top: 60px;
    text-align: center;
}

.page-promotions-limited-time-preview__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promo Grid Section */
.page-promotions-limited-time-preview__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-preview__promo-item {
    background-color: #2A3E5C; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions-limited-time-preview__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-preview__promo-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-limited-time-preview__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Preparation List Section */
.page-promotions-limited-time-preview__preparation-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-limited-time-preview__preparation-list li {
    background-color: #ffffff;
    padding: 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-limited-time-preview__list-title {
    font-size: 1.3em;
    color: #1A2B4C;
    margin-bottom: 10px;
}

.page-promotions-limited-time-preview__list-title--light {
    color: #FFD700;
}

.page-promotions-limited-time-preview__list-description {
    font-size: 0.95em;
    color: #444;
}

.page-promotions-limited-time-preview__list-description--light {
    color: #e0e0e0;
}

.page-promotions-limited-time-preview__image-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Advantages List (Why tx88) */
.page-promotions-limited-time-preview__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-limited-time-preview__advantages-list li {
    background-color: #2A3E5C;
    padding: 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
}

/* FAQ Section */
.page-promotions-limited-time-preview__faq-list {
    margin-top: 40px;
}

.page-promotions-limited-time-preview__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions-limited-time-preview__faq-question {
    font-size: 1.2em;
    color: #1A2B4C;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-limited-time-preview__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-preview__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-limited-time-preview__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
}

.page-promotions-limited-time-preview__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-promotions-limited-time-preview__faq-answer p {
    margin-bottom: 0;
    color: #333;
}

/* CTA Section */
.page-promotions-limited-time-preview__cta-section {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #1A2B4C;
}

.page-promotions-limited-time-preview__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2B4C;
}

.page-promotions-limited-time-preview__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-promotions-limited-time-preview__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-limited-time-preview__cta-buttons .page-promotions-limited-time-preview__button--primary {
    background-color: #1A2B4C;
    color: #FFD700;
    border-color: #1A2B4C;
}

.page-promotions-limited-time-preview__cta-buttons .page-promotions-limited-time-preview__button--primary:hover {
    background-color: #3A506B;
    border-color: #3A506B;
}

.page-promotions-limited-time-preview__cta-buttons .page-promotions-limited-time-preview__button--secondary {
    background-color: transparent;
    color: #1A2B4C;
    border-color: #1A2B4C;
}

.page-promotions-limited-time-preview__cta-buttons .page-promotions-limited-time-preview__button--secondary:hover {
    background-color: #1A2B4C;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-limited-time-preview__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-limited-time-preview__section-title {
        font-size: 2em;
    }

    .page-promotions-limited-time-preview__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-limited-time-preview__hero-section .page-promotions-limited-time-preview__container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-preview__hero-section {
        padding: 80px 0;
    }

    .page-promotions-limited-time-preview__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-limited-time-preview__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-limited-time-preview__section {
        padding: 40px 0;
    }

    .page-promotions-limited-time-preview__section-title {
        font-size: 1.8em;
    }

    .page-promotions-limited-time-preview__text {
        font-size: 1em;
    }

    .page-promotions-limited-time-preview__features, 
    .page-promotions-limited-time-preview__promo-grid, 
    .page-promotions-limited-time-preview__preparation-list, 
    .page-promotions-limited-time-preview__advantages-list {
        grid-template-columns: 1fr;
    }

    .page-promotions-limited-time-preview__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-limited-time-preview__cta-title {
        font-size: 1.8em;
    }

    .page-promotions-limited-time-preview__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-preview__hero-buttons, .page-promotions-limited-time-preview__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-limited-time-preview__button {
        width: 100%;
    }

    .page-promotions-limited-time-preview__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-limited-time-preview__section-title {
        font-size: 1.5em;
    }

    .page-promotions-limited-time-preview__cta-title {
        font-size: 1.6em;
    }
}