/* Genel Ayarlar */
body {
    font-family: 'Nunito', Arial, sans-serif; /* Gövde metinleri için Nunito, yedek olarak Arial ve genel sans-serif */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f8f9fa;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; /* İçeriği kenarlardan ayırır */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif; /* Başlıklar için Quicksand */
    margin-top: 0;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }

p {
    line-height: 1.7;
    margin-bottom: 1em;
}

/* HEADER STILLERI (DESKTOP FIRST) */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000; /* Header'ın z-index'i */
    height: 80px; /* Header'a sabit bir yükseklik ver */
    display: flex; /* İçindeki container'ı dikeyde ortalamak için flex yap */
    align-items: center; /* Container'ı dikeyde ortala */
    padding: 0; /* Header'ın kendi padding'ini kaldır */
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between; /* Logo sola, menü sağa */
    align-items: center; /* İçindeki logo ve menüyü dikeyde ortala */
    height: 100%; /* Parent'ı olan .container'ın yüksekliğini doldur */
    padding: 0; /* Container zaten padding'i sağlıyor, burada gerek yok */
}

.navbar .logo {
    display: flex; 
    align-items: center;
    height: 100%; 
}

.navbar .logo img {
    height: 50px; /* Logonun sabit yüksekliği */
    width: auto; /* Oranını koru */
    display: block;
    vertical-align: middle;
}

/* Desktop Navigasyon Linkleri */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Masaüstünde yatay görünür */
    align-items: center;
    height: 100%; 
}

.nav-links li {
    margin-left: 25px;
}

.nav-links li a {
    font-family: 'Nunito', sans-serif; /* Navigasyon linkleri için Nunito */
    font-weight: 600; /* Daha belirgin bir görünüm için 600 (Semibold) kullanabiliriz */
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
    padding: 0; 
    transition: color 0.3s ease;
    display: block;
    line-height: 50px; /* Logonun yüksekliğiyle aynı line-height */
}

.nav-links li a:hover {
    color: #ffc107;
}

.language-switcher {
    font-size: 0.9em;
    margin-left: 30px;
    display: flex; /* İçindeki a etiketlerini yan yana tutar */
    align-items: center;
    min-height: 40px; /* Menü öğeleriyle dikey hizalamayı korumak için min yükseklik */
    border-radius: 5px; /* Kapsayıcıya yuvarlak köşeler */
    overflow: hidden; /* Taşmayı engeller */
    transition: all 0.3s ease; /* Hover geçişi */
    /* Bu kapsayıcıda artık border veya ana padding yok */
    padding: 0 15px;
}

.language-switcher:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Hoverda hafif gölge */
}

.language-switcher a {
    font-weight: 700;
    color: #0056b3;
    padding: 0 25px; /* Yazı ile kenarlık arası yeterli boşluk */
    text-decoration: none;
    line-height: 40px; /* Metni dikeyde ortalamak için */
    transition: all 0.2s ease;
    display: block; /* Padding ve line-height'ın düzgün çalışması için */
    white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
    
    /* Her bir a etiketine kendi çerçevesini veriyoruz */
    border: 1px solid #ddd; 
    /* Köşelerin doğru görünmesi için her a etiketine ayrı radius vereceğiz */
    border-radius: 0; /* Varsayılanı sıfırla */
}

/* İlk a etiketi için sol köşelerin yuvarlak, sağ köşenin keskin olması */
.language-switcher a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none; /* İlk ve ikinci a arasındaki dikey çizgiyi kaldır */
}

/* İkinci (ve son) a etiketi için sağ köşelerin yuvarlak, sol köşenin keskin olması */
.language-switcher a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 1px solid #ddd; /* TR ve EN arasına dikey çizgi */
}

/* Aktif (Seçili) Dil Stili */
.language-switcher a.active {
    background-color: #ffc107; /* Ana mavi */
    color: #ffffff; /* Beyaz metin */
    cursor: default;
    pointer-events: none;
    border-color: #ffc107; /* Aktifken border rengini arka plan rengiyle aynı yap */
}

.language-switcher a.active:hover {
    background-color: #ffc107;
    color: #ffffff;
    border-color: #ffc107;
}


/* Hamburger Menü Butonu (Varsayılan olarak masaüstünde gizli) */
.hamburger-menu {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Menü açıldığında menünün üzerinde kalması için (header'dan yüksek) */
    position: relative;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0056b3;
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger menü açıldığında ikon animasyonu */
.hamburger-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Main Content Stilleri */
main {
    min-height: 70vh;
    padding: 0;
}

/* Genel Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1.05em;
}

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
    border: 2px solid #0056b3;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
}

.btn-secondary {
    background-color: #ffffff;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.btn-secondary:hover {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-link {
    color: #0056b3;
    text-decoration: underline;
    padding: 0;
    border: none;
    background: none;
    font-weight: normal;
}

.btn-link:hover {
    color: #ffc107;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-color: #e0f7fa;
    color: #333;
    padding: 100px 0;
    text-align: center;
    border-bottom: 5px solid #ffc107;
}

.hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #004085;
}

.hero-section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #0056b3;
}

.hero-section p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Section Başlıkları İçin Ortak Stil */
section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0056b3;
    position: relative;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

section p {
    padding: 0 30px;
}

section ul li {
    padding-left: 40px;
}
section ul li {
    padding-left: 25px;
}




/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-us-section p {
    font-size: 1.15em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}
.about-us-section .btn-secondary {
    margin-top: 20px;
}


/* Services Overview Section */
.services-overview-section {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.service-detail-text ul {
    list-style: none; /* Tik ikonları kullanıldığı için bullet pointleri kaldırır */
    margin: 20px 0;

    /* BURADA PADDING-LEFT'İ !important İLE ZORLUYORUZ */
    padding-left: 40px !important; /* Soldan 40 piksel girinti */
    /* Eğer bu işe yararsa, çakışan başka bir kural vardır ve onu bulup kaldırmalıyız. */
}

.service-detail-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px; /* İkon için bırakılan boşluk */
    line-height: 1.6;
}

/* Tik ikonunun konumu */
.service-detail-text ul li .icon-check::before {
    content: '\2713';
    color: #28a745;
    position: absolute;
    left: 0; /* li'nin kendi padding-left'ine göre konumlanır */
    top: 0;
    font-weight: bold;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-card h3 {
    color: #004085;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.service-card p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Other Sites Section */
.other-sites-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.other-sites-section p {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.site-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.site-link-card {
    background-color: #ffffff;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.site-link-card:hover {
    transform: translateY(-8px);
    border-color: #ff8c00;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.site-link-card h3 {
    color: #004085;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.site-link-card p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
    background-color: #0056b3;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}
.cta-section .cta-heading-custom-color {
    color: #ffc107; /* Logonuzdaki sarı vurgu rengi */
}

.cta-section h3 {
    font-size: 3em;
    margin-bottom: 25px;
    color: #ffc107;
}

.cta-section h2 {
    color: #ffc107;
}

.cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #0056b3;
}


/* Footer Stilleri */
footer {
    background-color: #004085;
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 15px;
}

.footer-section h3 {
    color: #ffc107;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.social-links a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer E-posta Linki Stilleri */
footer .contact-info .email-link {
    color: #ffffff;
    text-decoration: none;
}

footer .contact-info .email-link:hover {
    color: #ffc107;
}


/* Hamburger Menü Butonu (Varsayılan olarak masaüstünde gizli) */
.hamburger-menu {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Menü açıldığında menünün üzerinde kalması için (header'dan yüksek) */
    position: relative;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0056b3;
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger menü açıldığında ikon animasyonu */
.hamburger-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* RESPONSIVE DÜZENLEMELER (MOBILE FIRST YERİNE DESKTOP FIRST) */

/* Masaüstü için varsayılanlar yukarıda tanımlandı. */
/* 992px ve altındaki ekranlar için (tabletler dahil) */
@media (max-width: 992px) {
    /* Header ayarları - mobil menü için */
    header {
        height: auto; /* Otomatik yüksekliğe dön */
        padding: 15px 0; /* Mobil için padding geri gelsin */
        /* Flex özelliklerini koru */
    }

    .navbar {
        flex-direction: row; /* Logo ve hamburger yan yana */
        justify-content: space-between;
        align-items: center;
        padding: 0; /* Container padding'i sağlıyor */
        height: auto; /* Otomatik yükseklik */
    }

    .navbar .logo {
        height: auto; /* Otomatik yükseklik */
    }

    /* Hamburger menüyü göster */
    .hamburger-menu {
        display: block; 
    }

    /* Normal navigasyonu gizle */
    .nav-links {
        display: none; /* Varsayılan olarak gizli (açılana kadar) */
        flex-direction: column; /* Açıldığında dikey */
        position: fixed; /* <<-- Ekranın sabit bir yerinde durur */
        top: 0; /* Ekranın en üstünden başla */
        left: 0;
        width: 100%;
        height: 100vh; /* <<-- Tam ekran yüksekliğini kapla */
        background-color: #ffffff; /* <<-- Sağlam bir arka plan rengi */
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        padding: 80px 20px 20px 20px; /* Üst padding header için, diğerleri normal */
        z-index: 1001; /* Header'dan daha yüksek bir z-index (hamburger'den düşük) */
        overflow-y: auto; /* İçerik taşarsa kaydırma çubuğu çıksın */
        box-sizing: border-box; /* Padding height'a dahil edilsin */
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        transform: translateY(-100%); /* Başlangıçta ekranın üstünde gizli */
        opacity: 0;
        pointer-events: none; /* Tıklamaları engelle (gizliyken) */
    }

    /* Menü açıldığında */
    .nav-links.is-open {
        display: flex; /* JavaScript ile is-open sınıfı eklendiğinde göster */
        transform: translateY(0); /* Ekranın altına kaydır */
        opacity: 1;
        pointer-events: auto; /* Tıklamaları etkinleştir */
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        padding: 15px 20px; /* Mobil menü için padding */
        border-bottom: 1px solid #eee;
        line-height: normal; /* Mobilde line-height'ı normale döndür */
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }

   .language-switcher {
        width: 100%;
        margin-left: 30px;
        margin-top: 5px;
        padding: 0; /* Mobil'de de kapsayıcıda padding olmasın */
        border: none;
        box-shadow: none;
        background-color: transparent; /* Mobil menüde şeffaf arka plan */
        flex-direction: row; /* Mobil menü açıldığında da yan yana dursunlar */
        justify-content: center; /* Ortala */
        border-radius: 5px; /* Mobil menüde de köşeler yuvarlak olsun */
    }

    .language-switcher a {
        padding: 10px 15px; /* Mobil'de daha az dikey padding */
        line-height: normal;
        flex: 1; /* Mobil'de de eşit genişlik */
        border: 1px solid #ddd; /* Mobil'de her linkin kendi çerçevesi olsun */
    }

    /* Mobil'de köşeleri tekrar ayarla */
    .language-switcher a:first-child {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border-top-right-radius: 0; /* Sağ köşeyi keskin yap */
        border-bottom-right-radius: 0; /* Sağ köşeyi keskin yap */
        border-right: none; /* İlk ve ikinci a arasındaki dikey çizgiyi kaldır */
    }

    .language-switcher a:last-child {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-left-radius: 0; /* Sol köşeyi keskin yap */
        border-bottom-left-radius: 0; /* Sol köşeyi keskin yap */
        border-left: 1px solid #ddd; /* TR ve EN arasına çizgi */
    }
    
    .language-switcher a.active {
        border-color: #ffc107; /* Mobil aktif border rengi */
    }
}

    /* Genel responsive font ve padding ayarlamaları */
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    .hero-section { padding: 60px 0; }
    .hero-section h1 { font-size: 2.8em; }
    .hero-section h2 { font-size: 1.5em; }
    .hero-section p { font-size: 1.1em; }

    .about-us-section,
    .services-overview-section,
    .other-sites-section,
    .cta-section {
        padding: 40px 0;
    }

    .service-cards,
    .site-links {
        flex-direction: column;
        align-items: center;
    }
    .service-card,
    .site-link-card {
        min-width: unset;
        width: 90%;
        max-width: 400px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
}

/* Ekstra küçük ekranlar için (Telefon) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* services.html için ek stiller */

/* Sayfa Başlık Bölümü */
.page-hero-section {
    background-color: #f0f8ff; /* Açık mavi tonu */
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #ffc107;
    margin-bottom: 60px;
}

.page-hero-section h1 {
    font-size: 3em;
    color: #004085;
    margin-bottom: 15px;
}

.page-hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Hizmet Detay Bölümleri */
.service-detail-section {
    padding: 60px 15px;
    border-bottom: 1px solid #eee;
}

.service-detail-section:last-of-type {
    border-bottom: none; /* Son bölümde çizgi olmasın */
}

.service-detail-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0056b3;
    position: relative;
    padding-bottom: 10px;
}

.service-detail-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.service-detail-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş için */
    align-items: center;
    gap: 40px;
}

.service-detail-content.reverse-order {
    flex-direction: row-reverse; /* Metin ve görselin sırasını değiştirir */
}

.service-detail-text {
    flex: 1;
    min-width: 300px; /* Minimum genişlik */
    font-size: 1.1em;
    line-height: 1.8;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-text ul li {
    margin-bottom1.12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.8; /* Liste öğelerinin kendi içindeki satır boşluğu */
}

/* Basit ikon (içerik içinde tik işareti) */
.service-detail-text ul li .icon-check::before {
    content: '\2713'; /* Unicode tik işareti */
    color: #28a745; /* Yeşil renk */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px; /* Resimlerin maksimum genişliğini sınırlayın */
    text-align: center; /* İçindeki resmi (inline-block olarak) ortala */
    /* display: flex;  Bu satır eklenirse, img elementine margin: auto da verilebilir */
    /* justify-content: center; */
    /* align-items: center; */
}

.service-detail-image img {
    max-width: 100%; /* Kapsayıcı genişliğini aşmamasını sağlar */
    height: auto; /* Oranını korur */
    display: block; /* Margin auto ile ortalamak için block element yap */
    margin: 0 auto; /* Resmi yatayda ortala */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bg-light-gray {
    background-color: #f9f9f9; /* Hafif gri arka plan */
}

/* Responsive ayarlamalar (services.html özelinde) */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 60px 0;
    }
    .page-hero-section h1 {
        font-size: 2.2em;
    }
    .page-hero-section p {
        font-size: 1em;
    }
    .service-detail-section {
        padding: 40px 0;
    }
    .service-detail-content {
        flex-direction: column; /* Mobil'de alt alta diz */
    }
    .service-detail-content.reverse-order {
        flex-direction: column; /* Mobil'de alt alta diz, sırayı tersine çevirme */
    }
    .service-detail-text,
    .service-detail-image {
        min-width: unset; /* Minimum genişliği kaldır */
        width: 100%; /* Tam genişliği kapla */
    }
    .service-detail-image img {
        margin-top: 20px; /* Görselin üstüne biraz boşluk */
    }
    .service-detail-content.reverse-order .service-detail-image {
        order: -1; /* reverse-order'da görseli üste al */
    }
    .service-detail-content.reverse-order .service-detail-text {
        order: 1;
    }
}

/* about.html için ek stiller */

.about-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 15px;
}

.about-content.reverse-order {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    line-height: 1.8; /* Genel line-height'tan miras alır, ancak burada da belirtebiliriz */
}

.about-text h2 {
    text-align: left; /* Bu bölümde başlıkları sola hizala */
    margin-bottom: 25px;
    color: #0056b3;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0; /* Sola hizalı başlık için */
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
    transform: translateX(0); /* Ortalamayı kaldır */
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.about-text ul li strong {
    font-family: 'Quicksand', sans-serif; /* Vurguları Quicksand yapabiliriz */
    font-weight: 700;
}

/* Basit ikon (içerik içinde tik işareti) - Zaten style.css'te var, gerekirse ekleyin */
.about-text ul li .icon-check::before {
    content: '\2713'; /* Unicode tik işareti */
    color: #28a745; /* Yeşil renk */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px; /* Resimlerin maksimum genişliğini sınırlayın */
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive ayarlamalar (about.html özelinde) */
@media (max-width: 768px) {
 .about-section {
        padding: 40px 0;
    }
    .about-content {
        flex-direction: column;
    }
    .about-content.reverse-order {
        flex-direction: column; 
    }
    .about-text {
        min-width: unset;
        width: 100%;
    }
   
    .about-content.reverse-order .about-image {
        order: -1;
    }
    .about-content.reverse-order .about-text {
        order: 1;
    }
     .about-text h2 {
        text-align: center;
    }
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* contact.html için ek stiller */

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
    background-color: #f0f8ff; /* Açık mavi arka plan */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info-block h2 {
    text-align: left;
    margin-bottom: 25px;
    color: #0056b3;
}

.contact-info-block h2::after {
    left: 0;
    transform: translateX(0);
}

.contact-info-block p {
    font-size: 1.05em;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}

.info-item strong {
    color: #004085;
    font-family: 'Quicksand', sans-serif;
}

.info-item a {
    color: #0056b3;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Form Bloğu */
.contact-form-block {
    flex: 2; /* Daha geniş alan kaplar */
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form-block h2 {
    text-align: left;
    margin-bottom: 25px;
    color: #0056b3;
}

.contact-form-block h2::after {
    left: 0;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-family: 'Nunito', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box; /* Padding genişliğe dahil */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0,86,179,0.2);
}

/* Honeypot alanı gizleme */
.honeypot-field {
    display: none; /* Bu alanı gizle, botlar doldurursa spam olarak işaretlenecek */
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: none; /* Varsayılan olarak gizli */
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Butonu */
.contact-form-block .btn-primary {
    width: auto;
    padding: 12px 40px;
    font-size: 1.1em;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 40px 0;
    }
    .contact-info-block,
    .contact-form-block {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-info-block h2,
    .contact-form-block h2 {
        text-align: center;
    }
    .contact-info-block h2::after,
    .contact-form-block h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

