        body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f8f9fa; line-height: 1.6; }
        .container { max-width: 1000px; margin: 0 auto; padding: 20px; }
        .header { background: linear-gradient(176deg, #ba0000, #520000); color: white; padding: 40px 20px; text-align: center; margin-bottom: 30px; border-radius: 10px; }
        .header h1 { margin: 0; font-size: 2.5em; }
        .header p { margin: 10px 0 0 0; opacity: 0.9; }

        .search-box { text-align: center; margin-bottom: 30px; }
        .search-box input { width: 60%; padding: 10px; border-radius: 5px; border: 1px solid #ccc; font-size: 1em; }
        .search-box button { padding: 10px 20px; border: none; border-radius: 5px; background: #ba0000; color: white; cursor: pointer; }
        .search-box button:hover { background: #7f0000; }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .post-card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s forwards; }
        .post-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
        .post-title { margin: 0 0 10px 0; }
        .post-title a { color: #520000; text-decoration: none; font-size: 1.3em; font-weight: bold; }
        .post-title a:hover { color: #ba0000; }
        .post-meta { color: #6c757d; font-size: 0.9em; margin-bottom: 15px; }
        .post-excerpt { color: #495057; margin-bottom: 15px; }
        .read-more { color: #ba0000; text-decoration: none; font-weight: bold; }
        .read-more:hover { text-decoration: underline; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .pagination { text-align: center; margin-top: 30px; }
        .pagination a { display: inline-block; margin: 0 5px; padding: 8px 12px; border-radius: 5px; background: #520000; color: white; text-decoration: none; }
        .pagination a:hover { background: #ba0000; }
        .pagination .active { background: #ba0000; font-weight: bold; }
        .empty { text-align: center; padding: 60px 20px; color: #6c757d; }
        
        /* Header */
header {
    background-color: #ffffff; /* Koyu Kırmızı */
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Genel logo stilleri */
.logo {
    width: 75px; /* İhtiyacına göre logo boyutunu ayarla */
    height: 75px;
}

/* Masaüstü logosu varsayılan olarak gösterilir */
.logo-mobile {
    display: none;
}

/* Ekran genişliği 768px'in altına düştüğünde mobil logoyu göster */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav ul li a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hamburger Menü ve Mobil Menü için Temel Stil */
.hamburger {
    display: block; /* Mobilde hamburger menü varsayılan olarak görünür olacak */
    cursor: pointer;
    font-size: 1.5rem;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #8f0000;
    margin: 5px;
    transition: 0.3s;
}

/* Mobil Menü */
.mobile-nav {
    display: none; /* Mobil menü varsayılan olarak kapalı */
    background-color: #ffffff; /* Koyu Kırmızı */
    position: absolute;
    top: 9.5%;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #ccc;
}

.mobile-nav ul li a {
    color: #8f0000;
    text-decoration: none;
    padding: 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: #FF4500; /* Parlak Kırmızı */
}

/* Hamburger Menü Açıldığında */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobil Menü Açıldığında */
.mobile-nav.active {
    display: block;
}

/* Masaüstü Cihazlar İçin Stiller */
@media (min-width: 769px) {
    .hamburger {
        display: none; /* Masaüstü cihazlarda hamburger menüyü gizle */
    }

    .mobile-nav {
        display: none; /* Masaüstü cihazlarda mobil menüyü gizle */
    }

    .desktop-nav {
        display: block; /* Masaüstü cihazlarda normal menüyü göster */
    }
}


.desktop-nav ul li a:hover {
    color: #FF4500; /* Parlak Kırmızı */
}

/* Dropdown Menü */
.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: #FF4500; /* Parlak Kırmızı */
}

.desktop-nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255); /* Koyu Kırmızı */
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.desktop-nav ul li .dropdown-menu li {
    width: 100%;
}

.desktop-nav ul li .dropdown-menu li a {
    color: #8b0000;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    transition: background-color 0.3s ease;
}

.desktop-nav ul li .dropdown-menu li a:hover {
    background-color: #FF4500; /* Parlak Kırmızı */
}

/* Hover ile Dropdown Menü Açılması */
.desktop-nav ul li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0px;
}

.btn-basvuru {
    display: inline-block;
    background-color: #8b0000;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-right: 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 60%);
}

.btn-basvuru-fixed {
    display: none;
    }

.btn-basvuru:hover {
    background-color: #ce0000;
    color: #fff;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .btn-basvuru {
        display: none;
    }
}