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

.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, #FFD700 0%, #8B0000 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.page-x-s-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    border: 2px solid #FFD700;
}

.page-x-s-btn-primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-x-s-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-x-s-section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #8B0000; /* Dark Red */
    font-weight: bold;
}

.page-x-s-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: left;
}

.page-x-s-intro .page-x-s-text {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-x-s-image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

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

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

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

.page-x-s-card-title {
    font-size: 1.8em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-x-s-card-text {
    color: #555;
    margin-bottom: 20px;
}

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

.page-x-s-why-choose {
    background-color: #fefefe;
}

.page-x-s-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-x-s-list li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: #444;
}

.page-x-s-list-highlight {
    color: #8B0000; /* Dark Red */
}

.page-x-s-numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
    text-align: left;
}

.page-x-s-numbered-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-x-s-numbered-list li strong {
    color: #8B0000;
}

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

.page-x-s-mobile-experience {
    background-color: #f0f0f0;
}

.page-x-s-grid-2-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.page-x-s-mobile-image-wrapper {
    text-align: right;
}

.page-x-s-image-mobile {
    max-width: 80%;
    height: auto;
    display: inline-block;
    border: 5px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-x-s-list-bullet {
    list-style: disc;
    padding-left: 25px;
}

.page-x-s-image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 400px;
}

.page-x-s-faq {
    background-color: #fefefe;
}

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

.page-x-s-accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.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.active {
    max-height: 300px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-x-s-accordion-content p {
    margin: 0;
    color: #555;
}

.page-x-s-final-cta {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #fff;
}

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

.page-x-s-final-cta .page-x-s-text {
    color: #eee;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-x-s-keyword-emphasis {
    color: #8B0000;
    font-weight: bold;
}

.page-x-s-final-cta .page-x-s-keyword-emphasis {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-x-s-hero-title {
        font-size: 2.8em;
    }
    .page-x-s-hero-description {
        font-size: 1.1em;
    }
    .page-x-s-section-title {
        font-size: 2em;
    }
    .page-x-s-grid-2-mobile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-x-s-mobile-image-wrapper {
        order: -1; /* Image first on mobile */
        text-align: center;
    }
    .page-x-s-image-mobile {
        max-width: 60%;
    }
    .page-x-s-image-right {
        float: none;
        margin: 30px auto;
        max-width: 80%;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-x-s-hero-title {
        font-size: 2.2em;
    }
    .page-x-s-hero-description {
        font-size: 1em;
    }
    .page-x-s-hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-x-s-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-x-s-section-title {
        font-size: 1.8em;
    }
    .page-x-s-card-title {
        font-size: 1.5em;
    }
    .page-x-s-grid-2 {
        grid-template-columns: 1fr;
    }
    .page-x-s-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-x-s-accordion-content {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-x-s-hero-title {
        font-size: 1.8em;
    }
    .page-x-s-section-title {
        font-size: 1.5em;
    }
    .page-x-s-container {
        padding: 0 15px;
    }
}