/* style/x-s.css */
.page-x-s {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #0A192F; /* Dark Navy Blue main background */
}

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

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

.page-x-s-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-x-s-hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-x-s-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-x-s-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark Navy Blue */
    border: 2px solid #FFD700;
}

.page-x-s-btn-primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-x-s-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-x-s-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-x-s-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-x-s-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-x-s-subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-x-s-about-section, .page-x-s-types-section, .page-x-s-guide-section, .page-x-s-strategy-section, .page-x-s-promo-section, .page-x-s-security-section, .page-x-s-faq-section, .page-x-s-cta-section {
    padding: 80px 0;
}

.page-x-s-about-section, .page-x-s-guide-section, .page-x-s-promo-section {
    background-color: #0E203A; /* Slightly lighter dark blue for alternating sections */
}

.page-x-s-flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-x-s-flex-container.page-x-s-reverse-flex {
    flex-direction: row-reverse;
}

.page-x-s-text-content {
    flex: 1;
}

.page-x-s-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-x-s-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-x-s-responsive-img {
    width: 100%;
    height: auto;
}

.page-x-s-highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-x-s-keyword {
    color: #FFD700;
    font-style: italic;
}

.page-x-s-feature-list, .page-x-s-step-list, .page-x-s-bullet-list, .page-x-s-promo-list, .page-x-s-security-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-x-s-feature-list li, .page-x-s-step-list li, .page-x-s-bullet-list li, .page-x-s-promo-list li, .page-x-s-security-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-x-s-feature-list li::before, .page-x-s-bullet-list li::before, .page-x-s-promo-list li::before, .page-x-s-security-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

.page-x-s-step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-x-s-step-list {
    counter-reset: step-counter;
}

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

.page-x-s-card {
    background-color: #1A2F4F; /* Slightly lighter than main background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-x-s-card-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-x-s-card-description {
    font-size: 1em;
    color: #CCCCCC;
}

.page-x-s-strategy-grid .page-x-s-strategy-card {
    text-align: left;
    background-color: #1A2F4F;
}

.page-x-s-faq-section {
    background-color: #0E203A;
}

.page-x-s-faq-item {
    background-color: #1A2F4F;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-x-s-faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

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

.page-x-s-cta-section {
    background: linear-gradient(135deg, #0A192F, #1A3A5F);
    padding: 80px 0;
    text-align: center;
}

.page-x-s-cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-x-s-cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-x-s-hero-title {
        font-size: 2.8em;
    }
    .page-x-s-section-title {
        font-size: 2em;
    }
    .page-x-s-subsection-title {
        font-size: 1.5em;
    }
    .page-x-s-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .page-x-s-flex-container.page-x-s-reverse-flex {
        flex-direction: column;
    }
    .page-x-s-image-wrapper {
        margin-top: 40px;
    }
    .page-x-s-cta-title {
        font-size: 2.2em;
    }
    .page-x-s-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-x-s-hero-section {
        padding: 80px 0;
    }
    .page-x-s-hero-title {
        font-size: 2.2em;
    }
    .page-x-s-hero-description {
        font-size: 1.1em;
    }
    .page-x-s-section-title {
        font-size: 1.8em;
    }
    .page-x-s-subsection-title {
        font-size: 1.3em;
    }
    .page-x-s-about-section, .page-x-s-types-section, .page-x-s-guide-section, .page-x-s-strategy-section, .page-x-s-promo-section, .page-x-s-security-section, .page-x-s-faq-section, .page-x-s-cta-section {
        padding: 60px 0;
    }
    .page-x-s-grid-container {
        grid-template-columns: 1fr;
    }
    .page-x-s-card {
        padding: 25px;
    }
    .page-x-s-card-title {
        font-size: 1.3em;
    }
    .page-x-s-faq-question {
        font-size: 1.1em;
    }
    .page-x-s-cta-title {
        font-size: 1.8em;
    }
    .page-x-s-btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-x-s-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-x-s-hero-section {
        padding: 60px 0;
    }
    .page-x-s-hero-title {
        font-size: 1.8em;
    }
    .page-x-s-hero-description {
        font-size: 1em;
    }
    .page-x-s-section-title {
        font-size: 1.6em;
    }
    .page-x-s-subsection-title {
        font-size: 1.2em;
    }
    .page-x-s-about-section, .page-x-s-types-section, .page-x-s-guide-section, .page-x-s-strategy-section, .page-x-s-promo-section, .page-x-s-security-section, .page-x-s-faq-section, .page-x-s-cta-section {
        padding: 40px 0;
    }
    .page-x-s-faq-question {
        font-size: 1em;
    }
    .page-x-s-cta-title {
        font-size: 1.5em;
    }
    .page-x-s-btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-x-s-btn-large {
        width: 80%;
    }
}