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

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

.page-x-s .hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #4B0082 100%);
    padding: 100px 0;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-x-s .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-x-s .hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-x-s .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-x-s .btn-primary {
    background-color: #FFD700;
    color: #4B0082;
    border: 2px solid #FFD700;
}

.page-x-s .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #2F0050;
}

.page-x-s .btn-secondary {
    background-color: #4B0082;
    color: #FFD700;
    border: 2px solid #4B0082;
}

.page-x-s .btn-secondary:hover {
    background-color: #3a0066;
    border-color: #3a0066;
    color: #ffe033;
}

.page-x-s .btn-outline-light {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-x-s .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border-color: #FFD700;
}

.page-x-s .btn-lg {
    padding: 15px 30px;
    font-size: 1.2em;
    margin: 10px;
}

.page-x-s .btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-x-s .section-title {
    font-size: 2.5em;
    color: #4B0082;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

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

.page-x-s .sub-title {
    font-size: 1.8em;
    color: #4B0082;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-x-s .section-intro, .page-x-s .section-types, .page-x-s .section-tips, .page-x-s .section-benefits, .page-x-s .section-faq {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-x-s .section-guide, .page-x-s .section-promotions, .page-x-s .section-responsible, .page-x-s .section-cta {
    padding: 60px 0;
    color: #FFFFFF;
}

.page-x-s .bg-accent-dark {
    background-color: #4B0082;
}

.page-x-s .bg-primary-light {
    background-color: #FFF8DC; /* A very light gold for contrast */
    color: #4B0082;
}

.page-x-s .text-light {
    color: #FFFFFF;
}

.page-x-s .text-light .section-title::after, .page-x-s .text-light .sub-title::after {
    background-color: #FFD700;
}

.page-x-s .text-light .section-title {
    color: #FFD700;
}

.page-x-s .text-light .sub-title {
    color: #FFD700;
}

.page-x-s .list-unstyled {
    list-style: none;
    padding: 0;
}

.page-x-s .list-unstyled li {
    margin-bottom: 20px;
}

.page-x-s .list-bullet {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-x-s .list-ordered {
    list-style: decimal;
    margin-left: 20px;
    padding-left: 0;
}

.page-x-s .list-ordered li {
    margin-bottom: 25px;
}

.page-x-s .list-ordered li .sub-title {
    margin-top: 0;
    color: #FFD700;
}

.page-x-s .image-block {
    text-align: center;
    margin: 40px 0;
}

.page-x-s .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-x-s .image-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #666666;
    margin-top: 10px;
}

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

.page-x-s .promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-x-s .promo-card:hover {
    transform: translateY(-5px);
}

.page-x-s .promo-image {
    max-width: 100%;
    height: auto;
    max-height: 250px; /* Ensure images are not too tall */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-x-s .promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-x-s .promo-description {
    color: #e0e0e0;
}

.page-x-s .list-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-x-s .list-benefits li {
    background-color: #f0f0f0;
    border-left: 5px solid #FFD700;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-x-s .list-benefits li .sub-title {
    color: #4B0082;
    font-size: 1.4em;
    margin-top: 0;
}

.page-x-s .faq-list {
    margin-top: 30px;
}

.page-x-s .faq-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-x-s .faq-question {
    font-size: 1.3em;
    color: #4B0082;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-x-s .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-x-s .faq-question.active::after {
    content: '-';
}

.page-x-s .faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
}

.page-x-s .faq-answer.show {
    display: block;
}

.page-x-s .section-cta .section-title {
    color: #4B0082;
}

.page-x-s .section-cta .description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-x-s .hero-title {
        font-size: 2.5em;
    }

    .page-x-s .hero-description {
        font-size: 1em;
    }

    .page-x-s .section-title {
        font-size: 2em;
    }

    .page-x-s .sub-title {
        font-size: 1.5em;
    }

    .page-x-s .promo-grid, .page-x-s .list-benefits {
        grid-template-columns: 1fr;
    }

    .page-x-s .btn-lg {
        display: block;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .page-x-s .hero-title {
        font-size: 2em;
    }

    .page-x-s .hero-section {
        padding: 60px 0;
    }

    .page-x-s .section-title {
        font-size: 1.8em;
    }

    .page-x-s .sub-title {
        font-size: 1.3em;
    }

    .page-x-s .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}