/* [BEGIN: /home/nxscom/cx-or.com/assets/css/how-it-works.css] */

/* Page Header Specific Styles */
.page-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    color: #343a40;
}

/* Steps Guide Section */
.steps-guide .step-item {
    position: relative; /* Needed for positioning pseudo-elements if used later */
}

.steps-guide .step-number-container {
    flex-shrink: 0; /* Prevent number container from shrinking */
    margin-top: 0.1rem; /* Align number slightly better with heading */
}

.steps-guide .step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bs-light); /* Use Bootstrap light gray */
    border: 2px solid var(--bs-border-color);
    color: var(--bs-secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1; /* Ensure number centers vertically */
}

/* Add lines between steps visually (optional) */
/*
.steps-guide .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(25px + 1rem); // Half of number width + half of margin
    top: 60px; // Below the number
    bottom: -1.5rem; // Extend below the item bottom padding
    width: 2px;
    background-color: var(--bs-border-color);
    z-index: -1;
}
*/

.steps-guide .step-content h3 {
    color: #343a40;
}

.steps-guide .step-image i {
    opacity: 0.3;
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
    .steps-guide .step-item {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align items */
        text-align: center;
    }
    .steps-guide .step-number-container {
        margin-right: 0; /* Remove margin when stacked */
        margin-bottom: 1rem; /* Add space below number */
    }
     .steps-guide .step-image {
         display: none; /* Hide side icon/image on smaller screens */
     }
     /* Hide connecting lines on mobile if using pseudo-elements */
     /* .steps-guide .step-item::after { display: none; } */

     .steps-guide .step-content ul.list-inline {
        justify-content: center; /* Center inline list items */
     }
     .steps-guide .step-content ul.list-unstyled:not(.list-inline) {
         padding-left: 0; /* Remove default padding */
         list-style-position: inside; /* Keep icons inside text block */
     }
}


/* Ready CTA Section */
.ready-cta {
    /* Styles defined inline for background */
}

.ready-cta .btn-light {
    /* Ensure contrast */
}

/* [END: /home/nxscom/cx-or.com/assets/css/how-it-works.css] */