/* --- HAKKIMIZDA GÖRSELLE BİREBİR UYUMLU STİLLER --- */

/* Üst Bar: Dil Seçici Konumu */
.about-top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 5px 20px 5px;
}

/* Şık Dil Seçici Kapsül Stili */
.lang-selector {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 6px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.lang-btn.active {
    background: var(--logo-yellow, #f2b705);
    color: #111111;
}

/* Ana İçerik Kartı */
.about-hero-card {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 24px;
    padding: 35px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Ortalanmış Logo */
.about-card-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
}

/* Sarı Ana Başlık */
.about-main-title {
    color: var(--logo-yellow, #f2b705);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* Kırmızı Alt Çizgi Efekti */
.title-accent-line {
    width: 42px;
    height: 3px;
    background: var(--logo-red, #a61214);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Paragraf Metinleri */
.about-text-content {
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.7;
    text-align: left;
}

.about-text-content p {
    margin-bottom: 14px;
}

/* Ekstra Bilgi Kartı (İletişim & Çalışma Saatleri) */
.about-extra-card {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 20px;
    padding: 20px;
    margin-top: 16px;
    margin-bottom: 80px; /* Sol alttaki butonun üstünü kapatmaması için boşluk */
}

.about-extra-card h4 {
    color: var(--logo-yellow, #f2b705);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}