/* Image Separator with Parallax Styles */
.image-separator-section {
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 45vh;
    padding: 60px 0;
}

.image-separator-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.image-separator-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0);
    z-index: 1;
}

.image-separator-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}

.image-separator-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    color: #fff;
}

.image-separator-section .cta-button.btn-animated-border {
    border: 2px solid var(--secondary-color, #28a745);
    color: var(--secondary-color, #28a745);
    padding: 12px 30px;
    font-size: 1.2rem;
    box-shadow: none;
}

.image-separator-section .cta-button.btn-animated-border:hover {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--secondary-color, #28a745);
    transform: translateY(-2px);
}

.image-separator-section .cta-button.btn-animated-border::after {
    background-color: var(--secondary-color, #28a745);
}

@media (max-width: 767.98px) {
    .image-separator-section {
        min-height: 21vh;
        padding: 40px 0;
    }
    
    .image-separator-title {
        font-size: 2rem;
    }
    
    .image-separator-background {
        background-attachment: scroll;
    }
    
    .image-separator-section .cta-button.btn-animated-border {
        padding: 10px 25px;
        font-size: 1.1rem;
    }
}
