/* Separator Section Styles */
.separator-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
}

.separator-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.separator-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Remove any additional spacing on different screen sizes */
@media (max-width: 768px) {
    .separator-wrapper {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .separator-wrapper {
        padding: 0;
    }
}