
        /* Sayfaya özel stiller */
        .page-header {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 2.5rem 0;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        /* Başkan Kartı - Dikey Portre için */
        .president-card-meclis {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #3a1a1b 100%);
            border-radius: 28px;
            padding: 1.8rem 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: white;
            transition: transform 0.3s;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .president-card-meclis:hover {
            transform: translateY(-5px);
        }
        .president-image-wrapper {
            width: 180px;
            height: 240px;
            margin: 0 auto 1.2rem auto;
            border-radius: 20px;
            overflow: hidden;
            border: 4px solid var(--primary-gold);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .president-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.4s;
        }
        .president-card-meclis:hover .president-image-wrapper img {
            transform: scale(1.03);
        }
        .president-card-meclis h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .president-card-meclis .title {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .president-card-meclis .badge-president {
            background: var(--primary-gold);
            color: #2d2d2d;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 1rem;
            display: inline-block;
        }
        /* Meclis Üyesi Kartları - Dikey Resim için */
        .section-title-meclis {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .section-title-meclis:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .search-box {
            position: relative;
            width: 280px;
        }
        .search-box input {
            border-radius: 50px;
            padding: 10px 20px;
            border: 1px solid #e0d5c0;
            background: #fff;
            padding-right: 40px;
            font-size: 0.9rem;
        }
        .search-box i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-gold);
        }
        .member-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 1.8rem;
        }
        .member-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1.2rem;
        }
        .member-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(139,44,45,0.15);
        }
        .member-image-wrapper {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        .member-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s ease;
        }
        .member-card:hover .member-image-wrapper img {
            transform: scale(1.05);
        }
        .member-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin: 1rem 0.5rem 0.25rem;
        }
        .member-card .member-party {
            font-size: 0.75rem;
            color: #888;
            margin-bottom: 0.25rem;
        }
        .member-card .member-role {
            font-size: 0.7rem;
            color: var(--primary-gold);
            font-weight: 600;
            margin-top: 0.25rem;
            display: inline-block;
            background: rgba(197,160,40,0.1);
            padding: 4px 12px;
            border-radius: 30px;
        }
        /* Sağ Menü */
        .kurumsal-sidebar {
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
            border-bottom: 3px solid var(--primary-gold);
        }
        .kurumsal-sidebar h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .kurumsal-sidebar h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .kurumsal-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .kurumsal-menu li {
            margin-bottom: 0.5rem;
        }
        .kurumsal-menu a {
            display: block;
            padding: 10px 15px;
            border-radius: 50px;
            color: #4a4a4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            background: #f8f5ef;
        }
        .kurumsal-menu a i {
            margin-right: 12px;
            color: var(--primary-gold);
            width: 24px;
        }
        .kurumsal-menu a:hover {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            transform: translateX(5px);
        }
        .kurumsal-menu a:hover i {
            color: white;
        }
        .kurumsal-menu a.active {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
        }
        .kurumsal-menu a.active i {
            color: white;
        }
        /* Loading */
        .loading-spinner {
            text-align: center;
            padding: 3rem;
        }
        .no-results {
            text-align: center;
            padding: 3rem;
            background: #f8f5ef;
            border-radius: 30px;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            .kurumsal-sidebar {
                position: relative;
                top: 0;
                margin-top: 2rem;
            }
            .member-grid {
                grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
                gap: 1.2rem;
            }
            .member-image-wrapper {
                height: 210px;
            }
            .president-image-wrapper {
                width: 160px;
                height: 210px;
            }
            .section-title-meclis {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-box {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .member-grid {
                grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
                gap: 1rem;
            }
            .member-image-wrapper {
                height: 180px;
            }
            .president-image-wrapper {
                width: 140px;
                height: 185px;
            }
            .president-card-meclis h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .member-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            .member-image-wrapper {
                height: 160px;
            }
            .member-card h4 {
                font-size: 0.85rem;
            }
            .president-image-wrapper {
                width: 120px;
                height: 160px;
            }
        }
