
        /* Müdürlük Listesi Özel Stilleri */
        .director-list-container {
            margin-top: 30px;
        }
        
        .director-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 25px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }
        
        .director-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .director-header {
            background: linear-gradient(135deg, #2a4365 0%, #4299e1 100%);
            color: white;
            padding: 20px;
            position: relative;
        }
        
        .director-title {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .director-name {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }
        
        .director-content {
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .director-image {
            flex: 0 0 150px;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        
        .director-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .director-info {
            flex: 1;
            min-width: 250px;
        }
        
        .director-contact {
            margin-bottom: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #4a5568;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #4299e1;
            width: 20px;
            text-align: center;
        }
        
        .director-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .btn-director {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .btn-director i {
            margin-right: 5px;
        }
        
        .btn-regulation {
            background-color: #2a4365;
            color: white;
            border: none;
        }
        
        .btn-regulation:hover {
            background-color: #1a365d;
            color: white;
        }
        
        .btn-biography {
            background-color: #4299e1;
            color: white;
            border: none;
        }
        
        .btn-biography:hover {
            background-color: #3182ce;
            color: white;
        }
        
        /* Responsive tasarım */
        @media (max-width: 768px) {
            .director-content {
                flex-direction: column;
            }
            
            .director-image {
                flex: 0 0 auto;
                margin-right: 0;
                margin-bottom: 20px;
                width: 100%;
                max-width: 200px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .director-actions {
                flex-direction: column;
            }
            
            .btn-director {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .director-header {
                padding: 15px;
            }
            
            .director-title {
                font-size: 1.2rem;
            }
            
            .director-name {
                font-size: 1rem;
            }
            
            .director-content {
                padding: 15px;
            }
        }