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

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

.page-xo-so__hero-section {
    background: linear-gradient(135deg, #0A2E36, #1a5a67);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-xo-so__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-xo-so__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F39C12; /* Golden orange for emphasis */
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-xo-so__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.page-xo-so__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

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

.page-xo-so__btn--primary {
    background-color: #E74C3C;
    color: #fff;
    border: 2px solid #E74C3C;
}

.page-xo-so__btn--primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
}

.page-xo-so__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #F39C12; /* Golden orange border */
}

.page-xo-so__btn--secondary:hover {
    background-color: #F39C12;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-xo-so__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-xo-so__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-xo-so__section:nth-of-type(even) {
    background-color: #fbfcfc;
}

.page-xo-so__section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-xo-so__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-xo-so__highlight {
    color: #E74C3C;
    font-weight: bold;
}

.page-xo-so__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-xo-so__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-xo-so__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-xo-so__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-xo-so__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-xo-so__card-title {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 10px;
}

.page-xo-so__card-description {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
}

.page-xo-so__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-xo-so__list-item {
    background-color: #e8f5e9; /* Light green for list items */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #0A2E36;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    transition: background-color 0.3s ease;
}

.page-xo-so__list-item:hover {
    background-color: #dcedc8;
}

.page-xo-so__list-item strong {
    color: #0A2E36;
}

.page-xo-so__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
}

.page-xo-so__numbered-list .page-xo-so__list-item {
    background-color: #f0f8ff; /* Light blue for numbered list items */
    border-left-color: #E74C3C;
}

.page-xo-so__numbered-list .page-xo-so__list-item:hover {
    background-color: #e0f2f7;
}

.page-xo-so__link {
    color: #E74C3C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-xo-so__link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.page-xo-so__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-xo-so__conclusion-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-xo-so__hero-title {
        font-size: 2.8em;
    }

    .page-xo-so__hero-description {
        font-size: 1.1em;
    }

    .page-xo-so__section-title {
        font-size: 2em;
    }

    .page-xo-so__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-xo-so__hero-section {
        padding: 80px 0;
    }

    .page-xo-so__hero-title {
        font-size: 2.2em;
    }

    .page-xo-so__hero-description {
        font-size: 1em;
    }

    .page-xo-so__hero-actions, .page-xo-so__conclusion-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-xo-so__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-xo-so__section {
        padding: 40px 0;
    }

    .page-xo-so__section-title {
        font-size: 1.8em;
    }

    .page-xo-so__text, .page-xo-so__list-item {
        font-size: 0.95em;
    }
}

@media (max-width: 576px) {
    .page-xo-so__hero-title {
        font-size: 1.8em;
    }

    .page-xo-so__hero-description {
        font-size: 0.9em;
    }

    .page-xo-so__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-xo-so__section-title {
        font-size: 1.5em;
    }

    .page-xo-so__card-title {
        font-size: 1.3em;
    }

    .page-xo-so__card-description {
        font-size: 0.9em;
    }
    .page-xo-so__list-item {
        padding: 12px 15px;
    }
}