 .director-profile {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .director-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: top;
        }
        
        .director-info {
            padding: 25px;
        }
        
        .director-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 15px;
        }
        
        .director-contact {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #3498db;
            font-size: 1.1rem;
            width: 20px;
        }
        
        .contact-item a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .contact-item a:hover {
            color: #3498db;
        }
        
        /* Sekme Stilleri */
        .director-tabs {
            margin-top: 40px;
        }
        
        .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            margin-bottom: 25px;
        }
        
        .nav-tabs .nav-link {
            border: none;
            color: #6c757d;
            font-weight: 500;
            padding: 12px 25px;
            border-radius: 0;
            position: relative;
        }
        
        .nav-tabs .nav-link.active {
            color: #3498db;
            background-color: transparent;
            border: none;
        }
        
        .nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #3498db;
        }
        
        .tab-content {
            padding: 0 15px;
        }
        
        .tab-pane {
            line-height: 1.7;
            color: #4a5568;
        }
        
        .tab-pane h3 {
            color: #2a4365;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .regulation-list {
            list-style-type: none;
            padding: 0;
        }
        
        .regulation-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .regulation-list li::before {
            content: '•';
            color: #3498db;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        
        .regulation-list a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .regulation-list a:hover {
            color: #3498db;
        }
        
        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .director-image {
                height: 300px;
            }
            
            .director-name {
                font-size: 1.5rem;
            }
            
            .nav-tabs .nav-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }



        