html { scroll-behavior: smooth; }
        body { 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
            background: #f4f4f4; 
            margin: 0; 
            padding-top: 80px; /* App Bar yüksekliği kadar boşluk bıraktık */
            
        }
        
        /* APP BAR TASARIMI */
        /* Sosyal Medya İkon Gruplama */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #555; /* İkonların varsayılan rengi */
    font-size: 20px;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Her platformun kendi rengini tanımlayalım */
.social-icons a.fa-instagram:hover { color: #E4405F; }
.social-icons a.fa-facebook:hover { color: #1877F2; }
.social-icons a.fa-linkedin:hover { color: #0A66C2; }
.social-icons a.fa-x-twitter:hover { color: #000000; }
        
        .app-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000; /* Her zaman en üstte kalması için */
            box-sizing: border-box;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Logo için temsili stil */
        .logo-placeholder {
            width: auto;
            height: 50px;
            background-color: rgb(222, 113,38 );
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
            text-align: center;
            
            
      
        }
        .logo-placeholder img{
      height: 100%;
      width: auto;
      object-fit: contain;
        }
      

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            color: rgb(222, 113, 38);
            text-decoration:none;  
         
            font-style:italic ;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 15px;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #004a99;
        }

        /* İÇERİK YERLEŞİMİ */
        .layout { display: flex; max-width: 1200px; margin: auto; gap: 30px; padding: 20px; }
        
        .content { flex: 3; }
        section { 
            background: white; 
            padding: 60px 40px; 
            margin-bottom: 25px; 
            border-radius: 8px;
            min-height: 400px; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            /* Scroll yapıldığında App Bar'ın altında kalmaması için pay bırakıyoruz */
            scroll-margin-top: 90px;
        }

        /* SAĞ SİDEBAR VE ÇİZGİ */
        .sidebar {
            flex: 1;
            position: sticky;
            top: 100px; /* App bar'dan sonraki mesafe */
            height: fit-content;
            border-left: 2px solid #004a99;
            padding-left: 15px;
        }

        .menu-card ul { list-style: none; padding: 0; margin: 0; }
        .menu-card li { margin-bottom: 5px; }
        .menu-card a { 
            text-decoration: none; 
            color: #333; 
            display: block;
            padding: 8px 10px;
            transition: 0.3s;
        }
        .menu-card a:hover { color: #004a99; background: rgba(0, 74, 153, 0.05); }

        h2 { color: #004a99; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .menu-card {
            font-style: italic;
        }