.shc-1097-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #0d1330;
    border-radius: 8px;
    overflow: hidden;
}

.shc-1097-content {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.shc-1097-image-wrap {
    flex: 1 1 50%;
    position: relative;
    min-height: 300px;
}

.shc-1097-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shc-1097-heading {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.shc-1097-desc {
    color: #f5f5f5;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.shc-1097-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #0d1330;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.shc-1097-btn:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

.shc-1097-no-image .shc-1097-content {
    flex: 1 1 100%;
}

@media (max-width: 768px) {
    .shc-1097-container {
        flex-direction: column;
    }
    
    .shc-1097-content {
        padding: 40px 20px;
    }
    
    .shc-1097-image-wrap {
        min-height: 250px;
    }
}