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

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

.page-x-s-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-x-s-section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-x-s-hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-x-s-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-x-s-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-x-s-main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700;
}

.page-x-s-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.page-x-s-btn-primary {
    background-color: #FFD700;
    color: #0A246A;
}

.page-x-s-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

.page-x-s-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A246A;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-x-s-hero-image-wrapper {
    margin-top: 40px;
}

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

.page-x-s-section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 40px;
    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-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-x-s-link-text {
    color: #0A246A;
    text-decoration: none;
    font-weight: bold;
}

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

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

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

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

.page-x-s-feature-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-x-s-card-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-x-s-btn-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-x-s-btn-text:hover {
    color: #0A246A;
    border-color: #0A246A;
}

.page-x-s-benefit-item {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #FFD700;
}

.page-x-s-benefit-title {
    font-size: 1.4em;
    color: #0A246A;
    margin-bottom: 10px;
}

.page-x-s-large-icon {
    max-width: 150px;
    height: auto;
    margin-top: 30px;
}

.page-x-s-text-center {
    text-align: center;
}

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

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

.page-x-s-guide-list li {
    background-color: #fefefe;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    counter-increment: step-counter;
    position: relative;
    padding-left: 80px;
}

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

.page-x-s-guide-list h3 {
    font-size: 1.6em;
    color: #0A246A;
    margin-top: 0;
    margin-bottom: 10px;
}

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

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

.page-x-s-list-unstyled li {
    background-color: #fefefe;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.page-x-s-list-title {
    font-size: 1.3em;
    color: #0A246A;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-x-s-accordion-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.page-x-s-accordion-header {
    background-color: #0A246A;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-x-s-accordion-header:hover {
    background-color: #1a3a7a;
}

.page-x-s-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-x-s-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-x-s-accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-x-s-accordion-content.show {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-x-s-accordion-content .page-x-s-text {
    margin-bottom: 0;
}

.page-x-s-cta {
    background-color: #0A246A;
    color: #fff;
    padding: 80px 0;
    border-radius: 8px;
}

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

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

.page-x-s-cta .page-x-s-text {
    color: #f0f0f0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-x-s-btn-lg {
    padding: 16px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-x-s-main-title {
        font-size: 2.5em;
    }
    .page-x-s-section-title {
        font-size: 2em;
    }
    .page-x-s-hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-x-s-btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-x-s-grid-3, .page-x-s-grid-2 {
        grid-template-columns: 1fr;
    }
    .page-x-s-feature-card, .page-x-s-benefit-item, .page-x-s-guide-list li {
        padding: 25px;
    }
    .page-x-s-guide-list li::before {
        top: 20px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .page-x-s-guide-list li {
        padding-left: 65px;
    }
}

@media (max-width: 768px) {
    .page-x-s-hero-section {
        padding: 60px 0;
    }
    .page-x-s-main-title {
        font-size: 2em;
    }
    .page-x-s-subtitle {
        font-size: 1.1em;
    }
    .page-x-s-section {
        padding: 40px 0;
    }
    .page-x-s-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-x-s-text {
        font-size: 1em;
    }
    .page-x-s-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-x-s-main-title {
        font-size: 1.8em;
    }
    .page-x-s-section-title {
        font-size: 1.5em;
    }
    .page-x-s-hero-actions {
        gap: 10px;
    }
    .page-x-s-btn {
        width: 90%;
    }
    .page-x-s-feature-card, .page-x-s-benefit-item, .page-x-s-guide-list li {
        padding: 20px;
    }
    .page-x-s-guide-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 10px;
        top: 15px;
    }
    .page-x-s-guide-list li {
        padding-left: 55px;
    }
    .page-x-s-card-title, .page-x-s-benefit-title, .page-x-s-list-title {
        font-size: 1.2em;
    }
    .page-x-s-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-x-s-accordion-content.show {
        padding: 15px 20px;
    }
}