/* Sayfanın En Üstündeki Boşluğu Gidermek İçin Temel HTML/BODY Sıfırlamaları */
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Tüm elemanların kutu modelini öngörülebilir yapar */
}

/* Genel Stil Resetleri ve Temel Ayarlar (body stilini indexgorunum.css'ten kopyalıyoruz, tutarlılık için) */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5; /* Hafif gri arka plan */
    color: #333;
    margin: 0; /* Boşluk olmaması için emin oluyoruz */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden; /* Yatay kaydırmayı önle */
    box-sizing: border-box; /* Body için de box-sizing ekliyoruz */
}

a {
    text-decoration: none;
    color: #007bff; /* Mavi link rengi */
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Reklam Kapsayıcılarının Konumlandırması (Eğer sabit olmaları gerekiyorsa) */
/* NOT: Bu stil, HTML'deki <ins> etiketlerindeki `style="display:block"` özelliğini geçersiz kılacaktır. */
/* Eğer reklamlar fixed olmalıysa, HTML'den `<ins>` etiketlerindeki `style="display:block"` özelliğini KALDIRIN. */
.ad-container {
    position: fixed; /* Sabit konumlandırma */
    top: 0; /* Sayfanın en üstüne hizala */
    height: 100vh; /* Ekran yüksekliği kadar boyutu kapla */
    z-index: 1000; /* Diğer içeriğin üzerinde görünmesini sağla */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Kenar boşluğu ekle */
}

.ad-container.left {
    left: 0;
}

.ad-container.right {
    right: 0;
}

/* Navbar Stilleri (indexgorunum.css'ten kopyalanabilir veya buradan devam edilebilir) */
.main-header {
    background-color: #2c3e50; /* Koyu lacivert */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 0; /* Header'ın üst boşluğunu sıfırlıyoruz */
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    color: #ecf0f1;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.brand-logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.nav-item-custom {
    color: #bdc3c7;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.nav-item-custom:hover,
.nav-item-custom.active {
    color: #ffffff;
}

.nav-item-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2ecc71;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item-custom:hover::after,
.nav-item-custom.active::after {
    transform: scaleX(1);
}

/* İçerik Alanı */
.content-wrapper {
    flex-grow: 1;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;

    /* Eğer reklamlar sabit (fixed) ve içerik üzerine biniyorsa bu satırları etkinleştirin ve ayarlayın: */
    /* padding-left: 180px; */ /* Sol reklam genişliği + biraz boşluk */
    /* padding-right: 180px; */ /* Sağ reklam genişliği + biraz boşluk */
}

.main-content-container {
    max-width: 800px; /* Hakkımızda veya genel içerik için uygun genişlik */
    width: 90%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.header-section {
    margin-bottom: 40px;
}

.main-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.main-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Kart Stilleri (hakkımızda sayfasıyla benzer olabilir) */
.account-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-body-custom {
    padding: 25px;
}

/* Footer Stilleri (indexgorunum.css'ten kopyalandı, tutarlılık için) */
.main-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto; /* Footer'ı sayfanın altına sabitle */
    width: 100%; /* Tam genişlik */
    box-sizing: border-box;
}

.footer-content {
    margin-bottom: 15px;
}

.language-switcher {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.lang-link {
    color: #bdc3c7;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .custom-navbar {
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-brand-custom {
        margin-bottom: 15px;
    }

    .nav-links {
        gap: 15px;
        margin-top: 0;
    }

    .nav-item-custom {
        margin: 5px 10px;
    }

    .main-content-container {
        padding: 30px;
        width: 95%;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .main-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand-custom {
        font-size: 1.4rem;
    }

    .main-content-container {
        padding: 20px;
        width: 100%;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .lang-link {
        margin: 5px;
    }
}