    /* Base Styles */
    .section-maps {
        padding: 40px 0;
        background-color: #f9f9f9;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        text-align: center;
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    /* Main Layout */
    .maps-wrapper {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }
    
    .map-container {
        flex: 1;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    #officeMap {
        height: 600px;
        width: 100%;
    }
    
    .map-attribution {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(255,255,255,0.8);
        padding: 2px 8px;
        font-size: 11px;
        border-radius: 3px;
        z-index: 1000;
    }
    
    .branch-container {
        flex: 0 0 350px;
        display: flex;
        flex-direction: column;
    }
    
    /* Search Box */
    .search-box {
        position: relative;
        margin-bottom: 15px;
    }
    
    #branchSearch {
        width: 100%;
        padding: 10px 15px 10px 35px;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 0.9rem;
    }
    
    .search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }
    
    /* Branch List */
    .branch-list {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex: 1;
        overflow: hidden;
    }
    
    .branch-items {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 540px;
        overflow-y: auto;
    }
    
    .branch-item {
        padding: 15px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .branch-item:last-child {
        border-bottom: none;
    }
    
    .branch-content {
        flex: 1;
    }
    
    .branch-item h4 {
        margin: 0 0 5px 0;
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .branch-address, .branch-phone {
        margin: 3px 0;
        font-size: 0.85rem;
        color: #666;
    }
    
    .branch-item.active {
        background-color: #f0f7ff;
    }

    /* Style untuk scrollbar */
    .branch-items::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .branch-items::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .branch-items::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 10px;
    }

    .branch-items::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
    
    /* View Button */
    .view-btn {
        background-color: #3498db;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.85rem;
        transition: background-color 0.3s;
        white-space: nowrap;
    }
    
    .view-btn:hover {
        background-color: #2980b9;
    }
    
    /* Popup */
    .map-popup {
        min-width: 200px;
    }
    
    .map-popup h4 {
        margin: 0 0 8px 0;
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .map-popup p {
        margin: 4px 0;
        font-size: 0.85rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .branch-container {
            flex: 0 0 300px;
        }
    }
    
    @media (max-width: 768px) {
        .maps-wrapper {
            flex-direction: column;
        }
        
        #officeMap {
            height: 400px;
        }
        
        .branch-container {
            flex: 1;
            width: 100%;
        }
        
        .branch-items {
            height: 300px;
            
        }

        /* Style untuk scrollbar */
        .branch-items::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .branch-items::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .branch-items::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }

        .branch-items::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
    }
    
    @media (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 0.9rem;
        }
        
        .branch-item {
            padding: 12px;
        }
        
        .branch-item h4 {
            font-size: 0.9rem;
        }
        
        .branch-address, .branch-phone {
            font-size: 0.8rem;
        }
        
        .view-btn {
            padding: 6px 12px;
            font-size: 0.8rem;
        }

        /* Style untuk scrollbar */
        .branch-items::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .branch-items::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .branch-items::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }

        .branch-items::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
    }