/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #F3F1ED;
    padding: 20px 0;
}

.bredcrumb {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
}

.bredcrumb li {
    color: #666666;
    display: inline-flex !important;
    align-items: center;
    list-style: none !important;
}

.bredcrumb li::before {
    display: none !important;
}

.bredcrumb li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bredcrumb li a:hover {
    color: #5DBCC4;
}

.bredcrumb li:first-child::after {
    content: "/";
    margin-left: 10px;
    color: #666666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 15px 0;
    }
    
    .bredcrumb {
        font-size: 13px;
        gap: 8px;
    }
    
    .bredcrumb li:first-child::after {
        margin-left: 8px;
    }
}