        :root {
            --primary-color: #0076a4;
            --light-bg: #f8f9fa;
            --schedule-bg: #e3f2fd87;
            --text-color: #333;
            --light-text: #666;
            --border-radius: 4px;
        }
        

        .departments-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }
        
        .department {
            background: var(--light-bg);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }
        
        .department-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.2em;
            border-bottom: 1px solid #ddd;
            padding-bottom: 8px;
        }
        
        .contact-line {
            margin: 8px 0;
            display: flex;
        }
        
        .contact-label {
            min-width: 140px;
            font-weight: bold;
        }
        
        .employees-section {
            margin: 0 0;
        }
        
        .employee-group {
            margin: 10px 0;
            font-weight: bold;
        }
        
        .employee-name {
            margin: 4px 0 4px 20px;
        }
        
        .department-schedule {
            background: var(--schedule-bg);
            padding: 15px;
            margin-top: auto;
            border-radius: var(--border-radius);
        }
        
        .schedule-title {
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 1em;
            color: var(--primary-color);
        }
        
        .schedule-item {
            margin: 8px 0;
            display: flex;
            justify-content: space-between;
        }
        
        .schedule-label {
            font-weight: bold;
        }
        
        .address-section {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #ccc;
        }
        
        .address-note {
            font-size: 0.9em;
            color: var(--light-text);
        }
        
        .highlight {
            padding: 3px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .departments-container {
                grid-template-columns: 1fr;
            }
            
            .contact-line, .schedule-item {
                flex-direction: column;
            }
            
            .contact-label, .schedule-label {
                min-width: auto;
                margin-bottom: 4px;
            }
        }