/* 1. Candide Medium Font Tanımlaması (.otf formatı için) */
@font-face {
    font-family: 'Candide';
    src: url('fonts/Candide-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Genel Font ve Renk Tanımlamaları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Candide', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f0f4f8;
    color: #0f172a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header / Üst Alan */
.site-header {
    background: #ffffff;
    border-bottom: 2px solid #cbd5e1;
    padding: 1.5rem 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    color: #1a365d;
    font-weight: 800;
    letter-spacing: -0.5px;
   
}

.logo span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
    
}

.header-desc {
    max-width: 500px;
    font-size: 0.85rem;
    color: #1a365d;
    border-left: 1px solid #665D1E;
    padding-left: 12px;
}

/* Ana Başlık Şeridi (Beyaz Arka Plan) */
.main-title-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0 2rem 0;
    
    /* Üst ve alt çizgileri kaldırdık, çünkü artık yanlarda çizgiler var */
    border-top: none; 
    border-bottom: none;
    box-shadow: 0 1px 3px rgba(26,54,93,0.06);

    /* Flexbox Ayarları */
    display: flex;
    align-items: center;       /* Dikeyde ortalama */
    justify-content: center;   /* Yatayda ortalama */
    gap: 2rem;                 /* Çizgiler ile yazı arasındaki mesafe */
}

/* Sol ve Sağ Yatay Çizgiler (Bronz/Altın Rengi) */
.title-line {
    flex: 1;                   /* Kalan tüm boşluğu doldurarak esnemesini sağlar */
    height: 2px;               /* Çizgi kalınlığı */
    background-color: #CD7F32; /* Daha önce seçtiğimiz bronz renk (isterseniz #D4AF37 altın rengi de yapabilirsiniz) */
}

/* Ortadaki Yazı Grubu */
.title-content {
    text-align: center;
}

.main-title-section h2 {
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 1000;
    color: #1a365d;
    margin: 0;
    letter-spacing: 4px;      /* Harfler arası boşluk (istiyorsanız 3px ile 6px arası deneyebilirsiniz) */
    word-spacing: 6px;        /* Kelimeler arası boşluk (HALKAN ve HİZMETLERİ arasındaki mesafe) */
}

.main-title-section p {
    font-size: 25px;
    color: #1a365d;
    margin-top: 0.3rem;
    letter-spacing: 4px;
    font-weight: lighter;
    margin-bottom: 0;
    letter-spacing: 4px;    /* Harfler arası boşluk */
    word-spacing: 10px;        /* Kelimeler arası boşluk */
}

/* Hizmetler Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-bottom: 3rem;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Beyaz Arka Planlı Grid Kartları */
.service-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(26,54,93,0.04);
    border: 1px solid #cbd5e1;
    border-top: 4px solid #1a365d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(26,54,93,0.1);
}

/* Kart Başlığı ve Altın Sarısı Çizgi */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.7rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-header .number {
    background: #1a365d;
    color: white;
    width: 34px;   /* Boyut büyütüldü (Eskiden 26px idi) */
    height: 34px;  /* Boyut büyütüldü (Eskiden 26px idi) */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem; /* Yazı boyutu orantılı büyütüldü (Eskiden 0.8rem idi) */
}

.service-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.card-header h3 {
    font-size: 0.95rem;
    color: #1a365d;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card ul {
    list-style-type: none;
}

/* Grid İçindeki Madde Yazıları (Tamamen Koyu Lacivert Yapıldı) */
.service-card ul li {
    font-size: 0.8rem;
    color: #1a365d; /* Gri tonu kaldırıldı, net lacivert yapıldı */
    margin-bottom: 0.45rem;
    position: relative;
    padding-left: 14px;
    font-weight: 500; /* Yazının okunabilirliği için medium ton */
}

.service-card ul li::before {
    content: "▶";
    color: #1a365d;
    font-size: 0.5rem;
    position: absolute;
    left: 0;
    top: 3px;
}

/* 17. Hizmet Kartını Tam Genişliğe Yayma */
@media (min-width: 1200px) {
    .service-card:nth-child(17) {
        grid-column: 1 / -1; 
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* Footer / Flex & İtalik Slogan Yapısı */
.site-footer {
    background: #1a365d;
    color: #ffffff;
    padding: 1.8rem 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-slogan {
    font-family: 'Candide', sans-serif;
    font-size: 1.15rem;
    font-weight: 100;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 0.8px;
    word-spacing: 2px;
}

.site-footer p:last-child {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-style: normal;
}
/* 17. Kartın Grid İçindeki Konumu ve Genişliği */
.card-seventeen {
    grid-column: span 2; /* İki sütun kaplaması için (grid yapınıza göre ayarlayabilirsiniz) */
}

/* Kart başlık alanını diğer kartlarla aynı hizaya getirme */
.card-seventeen .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* Sol taraftaki numara ve ikonun en sola yapışmasını sağlayan kısım */
.card-seventeen .header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Alt kısımdaki iki sütunlu liste yapısı */
.card-seventeen .full-card-content {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.card-seventeen .full-card-content ul {
    flex: 1;
    margin: 0;
    padding-left: 20px;
}

/* Mobil görünüm için (Ekran küçülünce liste alt alta gelsin) */
@media (max-width: 768px) {
    .card-seventeen {
        grid-column: span 1;
    }
    .card-seventeen .full-card-content {
        flex-direction: column;
        gap: 15px;
    }
}
.ortayazi {
    text-align: justify;
    margin: auto;
    color:#1a365d;
    padding-left: 180px;
   line-height: 1.4;
font-size: 20px;
    font-style: italic;
    border-left: 1px solid #B87333;
}
.ortayazi_yazisi {
text-align: center;    
}