/* style/x-s.css */
.page-x-s {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text on dark background */
    background-color: #121212; /* Dark background for the page */
}

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

.page-x-s__hero {
    background: linear-gradient(135deg, #1A2E44, #0f1c2d);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-x-s__hero-content {
    max-width: 600px;
    text-align: left;
}

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

.page-x-s__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.page-x-s__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

.page-x-s__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-x-s__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-2px);
}

.page-x-s__hero-image-wrapper {
    flex-shrink: 0;
}

.page-x-s__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-x-s__section {
    padding: 80px 0;
    background-color: #1A2E44;
    margin-bottom: 20px;
}

.page-x-s__section:nth-of-type(even) {
    background-color: #0f1c2d;
}

.page-x-s__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-x-s__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-x-s__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-x-s__text-block--highlight {
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
    margin-top: 30px;
}

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

.page-x-s__grid--two-col {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.page-x-s__card {
    background-color: #0f1c2d;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

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

.page-x-s__card-description {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-x-s__btn--card {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 1em;
    margin-right: 0;
}

.page-x-s__ordered-list,
.page-x-s__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-x-s__ordered-list li,
.page-x-s__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

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

.page-x-s__full-width-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-x-s__feature-item {
    background-color: #0f1c2d;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-x-s__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-x-s__feature-item p {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
}

.page-x-s__cta-bottom {
    text-align: center;
    padding: 60px 0;
    background-color: #1A2E44;
}

.page-x-s__cta-bottom .page-x-s__btn {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-x-s__hero {
        flex-direction: column;
        padding: 80px 20px;
    }

    .page-x-s__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-x-s__hero-title {
        font-size: 2.8em;
    }

    .page-x-s__hero-image {
        max-width: 90%;
        margin-top: 40px;
    }

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

    .page-x-s__grid--two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-x-s__hero-title {
        font-size: 2.2em;
    }

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

    .page-x-s__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .page-x-s__section {
        padding: 60px 0;
    }

    .page-x-s__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-x-s__text-block, .page-x-s__ordered-list li, .page-x-s__unordered-list li, .page-x-s__card-description, .page-x-s__feature-item p {
        font-size: 0.95em;
    }
}

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

    .page-x-s__hero-description {
        font-size: 0.9em;
    }

    .page-x-s__btn {
        width: 100%;
        margin-right: 0;
        display: block;
    }

    .page-x-s__hero-content .page-x-s__btn {
        margin-right: 0;
    }

    .page-x-s__card, .page-x-s__feature-item {
        padding: 20px;
    }

    .page-x-s__section {
        padding: 40px 0;
    }

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

    .page-x-s__full-width-image {
        margin-top: 20px;
    }
}