.wps-container {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-gradient-start, #0B1E36) 0%, var(--bg-gradient-end, #1D2E49) 100%);
    overflow: hidden;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wps-diagonal-shape {
    position: absolute;
    top: -20%;
    width: 300px;
    height: 140%;
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.wps-diagonal-shape-1 {
    left: 10%;
}

.wps-diagonal-shape-2 {
    left: 45%;
}

.wps-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-left: -15px;
    margin-right: -15px;
    align-items: center;
}

.wps-col {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.wps-left-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.wps-right-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.wps-section-header {
    margin-top: 0;
    font-weight: 700;
}

.wps-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wps-step-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.wps-step-item:last-child {
    border-bottom: none;
}

.wps-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--highlight-start, #0B4FB3) 0%, var(--highlight-end, #1E73BE) 100%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.wps-step-item.wps-active {
    opacity: 1 !important;
}

.wps-step-item.wps-active::before {
    opacity: 1;
}

.wps-step-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wps-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wps-step-titles {
    display: flex;
    flex-direction: column;
}

.wps-step-subtitle {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.wps-step-title {
    font-size: 1.25em;
    font-weight: 700;
    margin-top: 2px;
}

.wps-step-content-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding-left: 31px;
}

.wps-step-item.wps-active .wps-step-content-panel {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
    padding-bottom: 5px;
}

.wps-step-desc {
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-size: 0.95em;
}

.wps-step-cta {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    border-radius: 4px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.wps-step-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Image Switching container */
.wps-images-viewport {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    border-radius: 8px;
    overflow: hidden;
}

.wps-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wps-image-slide.wps-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.wps-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .wps-left-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .wps-right-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
