.services-alt-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-alt-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-alt-item:hover {
    transform: translateY(-5px);
}

.service-alt-item.reverse {
    flex-direction: row-reverse;
}

.sai-image {
    flex: 0 0 50%;
    height: 400px;
}

.sai-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sai-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.sai-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(var(--primary-color-rgb, 14, 42, 71), 0.05); /* Fallback */
    line-height: 1;
    z-index: 1;
    font-family: inherit;
}

.sai-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0e2a47; /* Assuming primary blue */
    position: relative;
    z-index: 2;
}

.sai-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.sai-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.sai-content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sai-content ul li i {
    color: #f7941d; /* Assuming primary orange/accent */
    font-size: 14px;
}

.sai-content .btn {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .service-alt-item, .service-alt-item.reverse {
        flex-direction: column;
    }
    .sai-image {
        width: 100%;
        height: 300px;
        flex: auto;
    }
    .sai-content {
        padding: 30px;
    }
    .sai-num {
        top: 10px;
        right: 20px;
        font-size: 60px;
    }
}
