        /* İletişim Sayfası Özel Stiller */
        .contact-hero {
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .contact-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Ana Ofis Bölümü */
        .main-office-section {
            background: white;
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .main-office-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .main-office-info h2 {
            color: #1a2332;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .main-office-info h2 .gold {
            color: #d4af37;
        }

        .office-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .office-details li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1rem;
            color: #333;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .office-details li:last-child {
            border-bottom: none;
        }

        .office-details li strong {
            color: #1a2332;
            min-width: 100px;
        }

        .office-details li a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .office-details li a:hover {
            color: #ffd700;
        }

        .office-map {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            height: 300px;
        }

        .office-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Uzmanlar Bölümü */
        .experts-section {
            padding: 3rem 2rem;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2rem;
            color: #1a2332;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .section-title p {
            color: #666;
            font-size: 1.05rem;
        }

        .experts-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .expert-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .expert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .expert-header {
            background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
            padding: 2rem;
            text-align: center;
            color: #1a2332;
        }

        .expert-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: white;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .expert-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .expert-title {
            font-size: 0.95rem;
            opacity: 0.85;
            font-weight: 500;
        }

        .expert-body {
            padding: 2rem;
        }

        .expert-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .expert-info li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.95rem;
            color: #333;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .expert-info li:last-child {
            border-bottom: none;
        }

        .expert-info li strong {
            color: #1a2332;
            min-width: 80px;
            font-weight: 600;
        }

        .expert-info li a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .expert-info li a:hover {
            color: #ffd700;
        }

        .expert-contact-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            margin-top: 1rem;
            background: #d4af37;
            color: #1a2332;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            text-align: center;
        }

        .expert-contact-btn:hover {
            background: #ffd700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 1.8rem;
            }

            .main-office-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .office-map {
                height: 250px;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .experts-grid {
                grid-template-columns: 1fr;
            }
        }
    