        .department-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid var(--nsmu-grey-3);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .department-header {
            background: linear-gradient(135deg, var(--nsmu-primary) 0%, var(--nsmu-blue-1) 100%);
            color: white;
            padding: 1.5rem;
        }
        
        .department-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .department-subtitle {
            opacity: 0.9;
            font-size: 0.95rem;
        }
        
        .contact-info {
            padding: 1.5rem;
            background-color: white;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            background-color: var(--nsmu-light-blue-3);
            color: var(--nsmu-primary);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .contact-text {
            line-height: 1.4;
        }
        
        .contact-label {
            font-weight: 600;
            color: var(--nsmu-grey);
            font-size: 0.85rem;
            margin-bottom: 0.15rem;
        }
        
        .contact-value {
            color: var(--nsmu-primary-dark);
            font-weight: 500;
        }
        
        .departments-section {
            padding: 1.5rem;
            background-color: #f8fafc;
            border-left: 1px solid var(--nsmu-grey-3);
            height: 100%;
        }
        
        .departments-title {
            color: var(--nsmu-primary);
            font-weight: 600;
            margin-bottom: 1.25rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--nsmu-accent-blue);
        }
        
        .department-list {
            list-style: none;
            padding-left: 0;
        }
        
        .department-item {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--nsmu-grey-3);
            color: var(--nsmu-primary-dark);
            font-weight: 500;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .department-item:last-child {
            border-bottom: none;
        }
        
        .department-item:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .department-item:nth-child(1):before {
            background-color: var(--nsmu-secondary);
        }
        
        .department-item:nth-child(2):before {
            background-color: var(--nsmu-secondary);
        }
        
        .department-item:nth-child(3):before {
            background-color: var(--nsmu-secondary);
        }
        
        .department-item:nth-child(4):before {
            background-color: var(--nsmu-secondary);
        }
        
        .regulation-link {
            color: var(--nsmu-blue-1);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin-top: 0.5rem;
        }
        
        .regulation-link:hover {
            color: var(--nsmu-accent-orange);
            text-decoration: underline;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 0.8rem;
            background-color: var(--nsmu-light-blue-3);
            border-radius: 20px;
            color: var(--nsmu-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            transition: all 0.2s;
        }
        
        .social-link:hover {
            background-color: var(--nsmu-primary);
            color: white;
            text-decoration: none;
        }
        
        .social-icon {
            margin-right: 6px;
            width: 16px;
            height: 16px;
        }
        
        @media (max-width: 768px) {
            .departments-section {
                border-left: none;
                border-top: 1px solid var(--nsmu-grey-3);
            }
        }
        
        .email-link {
            color: var(--nsmu-blue-1);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .email-link:hover {
            color: var(--nsmu-accent-orange);
            text-decoration: underline;
        }
        
        .phone-link {
            color: var(--nsmu-primary-dark);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .phone-link:hover {
            color: var(--nsmu-accent-green);
        }
        
        .address-text {
            line-height: 1.5;
        }