.sv-about-widget-wrapper {
    width: 100%;
    padding: 4rem var(--sv-content-padding);
    background: var(--sv-bg);
    position: relative;
    z-index: 1;
}

.sv-about-widget-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    width: 100vw;
    height: calc(100% + 100px);
    transform: translateX(-50%);
    background: var(--sv-bg);
    z-index: -1;
}

.sv-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 25%;
}

.sv-about-text {
    flex: 1;
    min-width: 300px;
    font-size: var(--sv-font-size-lg);
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.sv-about-button-wrapper {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sv-about-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    
    .sv-about-text {
        min-width: 100%;
    }
    
    .sv-about-button {
        width: 100%;
        max-width: 200px;
    }
}
