.usc-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px 0;
}

.usc-image-col, .usc-content-col {
    flex: 1 1 50%;
    min-width: 300px;
}

.usc-image-col {
    position: relative;
}

.usc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.usc-content-col {
    display: flex;
    align-items: center;
    padding: 60px;
    box-sizing: border-box;
}

.usc-content-inner {
    max-width: 500px;
}

.usc-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #0033A0;
}

.usc-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #0033A0;
}

.usc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

.usc-btn {
    display: inline-block;
    background-color: #0033A0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.usc-btn:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 51, 160, 0.3);
}

@media (max-width: 768px) {
    .usc-wrapper {
        flex-direction: column;
    }
    .usc-content-col {
        padding: 40px 20px;
    }
    .usc-image {
        min-height: 250px;
    }
}