/* style/x-s.css */
.page-x-s {
    font-family: 'Arial', sans-serif;
    color: #f5ddc6; /* Light text for dark background */
    background-color: #0A2239; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-x-s-section {
    padding: 60px 0;
    text-align: center;
}

.page-x-s-hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #1A3F5E 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #FFD700; /* Gold text for hero */
}

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

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

.page-x-s-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.page-x-s-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-x-s-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-x-s-btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

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

.page-x-s-section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700;
}

.page-x-s-intro p, .page-x-s-why-choose p, .page-x-s-guide p, .page-x-s-tips p, .page-x-s-cta p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #f5ddc6;
}

.page-x-s-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-x-s-intro-item {
    background-color: #1A3F5E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-x-s-intro-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-x-s-intro-item p {
    font-size: 1em;
    color: #f5ddc6;
    margin-bottom: 0;
}

.page-x-s-advantages-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-x-s-advantages-list li {
    background-color: #1A3F5E;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f5ddc6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-x-s-advantages-list li strong {
    color: #FFD700;
}

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

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

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

.page-x-s-step-item {
    background-color: #1A3F5E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-x-s-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A2239;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid #0A2239;
}

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

.page-x-s-step-item p {
    font-size: 1em;
    color: #f5ddc6;
    margin-bottom: 0;
}

.page-x-s-step-item a {
    color: #FFD700;
    text-decoration: underline;
}

.page-x-s-step-item a:hover {
    color: #e6c200;
}

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

.page-x-s-tips-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-x-s-tips-list li {
    background-color: #1A3F5E;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f5ddc6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-x-s-tips-list li strong {
    color: #FFD700;
}

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

.page-x-s-faq {
    padding-bottom: 30px;
}

.page-x-s-accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-x-s-accordion-item {
    margin-bottom: 15px;
    background-color: #1A3F5E;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-x-s-accordion-toggle {
    display: none;
}

.page-x-s-accordion-header {
    display: block;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.page-x-s-accordion-toggle:checked + .page-x-s-accordion-header::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-x-s-accordion-toggle:checked + .page-x-s-accordion-header {
    background-color: #0A2239;
}

.page-x-s-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.page-x-s-accordion-toggle:checked + .page-x-s-accordion-header + .page-x-s-accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-x-s-accordion-content p {
    font-size: 1em;
    color: #f5ddc6;
    margin-bottom: 0;
}

.page-x-s-accordion-content a {
    color: #FFD700;
    text-decoration: underline;
}

.page-x-s-accordion-content a:hover {
    color: #e6c200;
}

.page-x-s-contact-text {
    font-size: 1.1em;
    margin-top: 30px;
    color: #f5ddc6;
}

.page-x-s-text-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-x-s-text-link:hover {
    color: #e6c200;
}

.page-x-s-cta {
    background-color: #1A3F5E;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-x-s-hero-title {
        font-size: 3em;
    }
    .page-x-s-section-title {
        font-size: 2em;
    }
    .page-x-s-grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-x-s-hero-title {
        font-size: 2.5em;
    }
    .page-x-s-hero-description {
        font-size: 1em;
    }
    .page-x-s-hero-actions {
        flex-direction: column;
    }
    .page-x-s-btn {
        width: 80%;
        margin: 0 auto 15px;
    }
    .page-x-s-step-item {
        padding: 20px;
    }
    .page-x-s-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-x-s-step-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-x-s-hero-title {
        font-size: 2em;
    }
    .page-x-s-section-title {
        font-size: 1.8em;
    }
    .page-x-s-btn {
        width: 100%;
    }
    .page-x-s-intro-subtitle {
        font-size: 1.5em;
    }
    .page-x-s-advantages-list li, .page-x-s-tips-list li {
        font-size: 0.95em;
        padding: 15px;
    }
    .page-x-s-accordion-header {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-x-s-accordion-header::after {
        font-size: 1.2em;
        right: 15px;
    }
    .page-x-s-accordion-content p {
        font-size: 0.95em;
    }
}