
         /* Meclis Üyeleri Özel Stilleri */
        .president-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }
        
        .president-card:hover {
            transform: translateY(-5px);
        }
        
        .president-image {
            position: relative;
            overflow: hidden;
            height: 350px;
        }
        
        .president-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .president-card:hover .president-image img {
            transform: scale(1.05);
        }
        
        .president-info {
            padding: 25px;
            text-align: center;
        }
        
        .president-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 5px;
        }
        
        .president-title {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 15px;
        }
        
        .president-bio {
            color: #718096;
            line-height: 1.6;
        }
        
        .council-members-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .council-members-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background-color: #3498db;
        }
        
        .member-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 25px;
        }
        
        .member-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .member-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .member-card:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 5px;
        }
        
        .member-title {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 10px;
        }
        
        /* Arama Kutusu */
        .search-box {
            margin-bottom: 30px;
        }
        
        .search-box .form-control {
            border-radius: 30px;
            padding: 12px 20px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .search-box .btn {
            border-radius: 30px;
            padding: 12px 25px;
            margin-left: 10px;
        }
        
        /* Responsive Düzenlemeler */
        @media (max-width: 768px) {
            .president-image {
                height: 280px;
            }
            
            .president-name {
                font-size: 1.5rem;
            }
            
            .member-image {
                height: 240px;
            }
            
            .search-box .btn {
                width: 100%;
                margin-left: 0;
                margin-top: 10px;
            }
        }
        