.shb-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
}
.shb-content {
    flex: 1 1 300px;
}
.shb-image-wrapper {
    flex: 1 1 300px;
}
.shb-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.shb-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}
.shb-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}
.shb-actions {
    display: flex;
    gap: 15px;
}
.shb-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: opacity 0.3s;
}
.shb-btn:hover {
    opacity: 0.9;
}
.shb-btn-primary {
    background: #00a1b2;
    color: #fff;
}
.shb-btn-secondary {
    background: transparent;
    border: 2px solid #00a1b2;
    color: #00a1b2;
}
@media (max-width: 768px) {
    .shb-container {
        flex-direction: column-reverse;
        padding: 30px 20px;
    }
    .shb-heading {
        font-size: 2rem;
    }
    .shb-actions {
        flex-direction: column;
    }
}