body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #1a1a1a;
}

header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    min-height: 120px;
    padding: 10px 0;
    width: 100%; /* Header'ın tüm genişliği kapladığından emin olalım */
}

.nav-container {
    max-width: 100% !important; /* 1200px kısıtlamasını kaldırıp tam genişlik yaptık */
    width: 100%;
    margin: 0;
    padding: 0 40px; /* Kenarlardan çok az boşluk bıraktık */
    display: flex;
    justify-content: flex-start; /* Elemanları önce sola yaslar */
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0; /* Logonun ve başlığın sıkışmasını önler */
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo img.eyilogo {
    width: 260px;
    height: 130px;
    object-fit: contain;
}

.logo h2 {
    color: #64ffda;
    margin: 0;
    font-size: 22px;
}

/* NAVBARI SAĞA İTEN KRİTİK KOD */
nav#menu {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto !important; /* Solundaki tüm boşluğu doldurarak navbarı en sağa iter */
}

nav a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
    white-space: nowrap; /* Menü elemanlarının alt alta düşmesini engeller */
}

nav a:hover {
    color: #64ffda;
}

.dropdown {
    position: relative;
    list-style: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0a192f;
    min-width: 200px;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    z-index: 1001;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: white !important;
    padding: 12px 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu li a:hover {
    background-color: #112240;
    color: #64ffda !important;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.card h2 {
    color: #0a192f;
}

.card p {
    line-height: 1.7;
}

.faq-page {
    padding: 40px 0 20px;
}

.page-top {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 35px;
}

.page-label {
    display: inline-block;
    padding: 10px 20px;
    background: #64ffda;
    color: #0a192f;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.page-top h1 {
    margin: 0;
    font-size: 2.4rem;
    color: #0a192f;
}

.page-top p {
    color: #4a5568;
    margin: 16px auto 0;
    max-width: 680px;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-box {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(100, 255, 218, 0.18);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(10, 25, 47, 0.08);
}

.faq-box h3 {
    margin: 0 0 14px;
    color: #0a192f;
    font-size: 1.1rem;
}

.faq-box p {
    margin: 0;
    line-height: 1.75;
    color: #475569;
}

.faq-box pre {
    margin: 0;
    padding: 18px;
    background: #ffffff;
    border-radius: 16px;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    color: #0a192f;
    line-height: 1.7;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 980px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.auto-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
    display: block;
    touch-action: pan-y;
}

.auto-slider::-webkit-scrollbar {
    display: none;
}

.slide {
    display: inline-block;
    width: 320px;
    height: 230px;
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    vertical-align: top;
}

#logos-slider .slide {
    width: 380px;
    height: 280px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

footer {
    background: #0a192f;
    color: #8892b0;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    width: 180px;
    height: 150px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav#menu {
        display: none;
    }
    .nav-container {
        padding: 0 20px;
    }
}