
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}


.ust-banner img {
    width: 100%;
    display: block;
}

.ana-menu {
    background: #0054a6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ana-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.ana-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    font-weight: bold;
    transition: 0.3s;
}

.ana-menu ul li a:hover {
    background: #e30613;
    transform: scale(1.05);
}


.icerik-alani {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 15px;
}

.haberler-sol, .ana-icerik-sol {
    flex: 3;
}

.islemler-sag, .yan-menu-kutusu {
    flex: 1;
    min-width: 280px;
}


.kart-yapisi, .haber-kart, .hizli-menu {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}


.kart-efektli:hover, .haber-kart:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.hosgeldin-metni {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 6px solid #e30613;
}


.baslik-stili, h2, h3 {
    color: #0054a6;
    margin-top: 0;
}

.kirmizi-cizgi-sablonu, .baslik-cizgi {
    border: 0;
    border-top: 4px solid #e30613;
    width: 60px;
    margin-bottom: 20px;
}

/* BUTONLAR */
.buton-genel, .enabiz-link, .mhrs-link, .devam-oku {
    display: block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.enabiz-link, .buton-mavi { background: #0054a6; color: white !important; }
.mhrs-link, .buton-kirmizi { background: #e30613; color: white !important; }

.buton-genel:hover, .enabiz-link:hover, .mhrs-link:hover {
    opacity: 0.9;
    filter: brightness(1.2);
}

.haber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.haber-icerik h3 { margin: 0 0 10px 0; }


.iletisim-kapsayici { display: flex; gap: 20px; flex-wrap: wrap; }
.iletisim-bilgi-kutu { flex: 1; }
.iletisim-harita { flex: 1; border: 1px solid #ddd; border-radius: 10px; overflow: hidden; }


@media (max-width: 850px) {
    .icerik-alani { flex-direction: column; }
    .haber-grid { grid-template-columns: 1fr; }
}