  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Başlık stili */
        .main-title {

            background-color: #00457C;
            color: #fff;
            padding: 5px;
            text-align: center;
        }

        /* Alt başlık stili */
        .section-title {
            background-color: #f2f2f2;
            color: #333;
            padding: 15px;
            font-size: 20px;
            text-align: center;
            margin-top: 0;
        }

        .info-div {
            margin: 0 auto; /* Ortalanmasını sağlar */
            padding: 5px; /* Sağ ve sol kenarlardan 5px padding */
            text-align: justify; /* İki yana yaslanması için */
            width: 80%; /* Genişliği ayarlamak için, ihtiyaca göre değiştirilebilir */
        }

        /* Son güncelleme stili */
        .last-update {
            text-align: left;
            color: #666;
            font-size: 0.9em;
            padding: 50px 0px;
<!--            margin: 100px 10px 100px 0;-->
        }




        @media screen and (max-width: 768px) {
            .content {
                display: flex !important;
                flex-direction: column !important; /* Sadece dikey hizalama */
                gap: 20px; /* Görseller arası boşluk */
                align-items: stretch !important; /* Tam genişlik sağlama */
            }

            .image-box {
                flex: 1 1 100% !important; /* Esnekliği devre dışı bırak */
                width: 100% !important; /* Tam genişlik */
                max-width: 100% !important; /* Yan yana dizilmeyi engelle */
                margin: 0 auto !important; /* Ortalama */
            }

            .image-box img {
                width: 100% !important; /* Görsel boyutunu kutuya göre ayarla */
                height: auto !important; /* Görsel oranını koru */
            }
        }




        /* İçerik bölümü */
        /* İçerik bölümü */
        .content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
            gap: 20px; /* Görsel kutular arası boşluk için ekledim */
        }

        /* Görsel kutuları */
        .image-box {
            flex: 1 1 45%;
            max-width: 45%;
            margin: 10px;
            box-sizing: border-box;
        }

        .image-box h3 {
            text-align: center;
            color: #00457C;
        }

        .image-box img {
            width: 100%;
            height: auto;
            height: auto;
            border: 1px solid #ccc;
        }







                /* Ayırıcı çizgi */
        .divider {
            width: 100%;
            height: 2px;
            background-color: #00457C;
            margin: 20px 0;
        }
        /* Header stili */
        .site-header {
            background-color: #00457C;
            color: #fff;
            padding: 10px 20px;
        }

        .header-content {
            display: flex;
            align-items: center;
        }

        .header-content .logo {
            height: 100px;
            margin-right: 20px;
        }

        /* Footer stili */
        .site-footer {
            background-color: #00457C;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            position: relative;
            width: 100%;
            bottom: 0;
        }


        /* Veri kaynakları bölümü için stiller */
        .data-sources-section {
            background-color: #f8f9fa;
            padding: 20px 0;
            margin-top: 30px;
            border-top: 1px solid #e9ecef;
        }

        .data-sources-container {
            width: 80%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .data-sources-title {
            color: #00457C;
            font-size: 1.2em;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .data-sources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .data-source-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s ease-in-out;
        }

        .data-source-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .data-source-item h4 {
            color: #00457C;
            margin: 0 0 10px 0;
        }

        .data-source-item a {
            color: #0066cc;
            text-decoration: none;
            display: inline-block;
            margin-top: 5px;
            font-size: 0.9em;
        }

        .data-source-item a:hover {
            text-decoration: underline;
        }

        .data-source-item p {
            color: #666;
            margin: 5px 0;
            font-size: 0.9em;
            line-height: 1.4;
        }



        /* Ana Menü */
        .main-menu {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 15px 0;
        }

        .menu-items {
            display: flex;
            justify-content: center;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu-items li a {
            color: white;
            text-decoration: none;
            padding: 0px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .menu-items li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
