/* ============================================
   DECORATIVE DIVIDER SECTION STYLES
   ============================================ */

.decorative-divider-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
}

.decorative-divider-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.divider-left-image {
    position: absolute;
    left: 69px;
    width: 150.835px;
    height: 240px;
    overflow: hidden;
    background: white;
}

.divider-left-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.divider-line {
    width: 1184px;
    height: 66px;
    margin-left: 60px;
}

.divider-line img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .decorative-divider-section {
        padding: 40px 0;
    }

    .divider-left-image {
        left: 20px;
        width: 100px;
        height: 160px;
    }

    .divider-line {
        width: 100%;
        max-width: calc(100% - 40px);
        margin-left: 20px;
    }
}