/* Genel Sıfırlama ve Font Ayarları */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header ve Logo */
.site-header { background-color: #ffffff; padding: 20px 0; border-bottom: 1px solid #eaeaea; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.site-header .container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.logo a { font-size: 28px; font-weight: bold; color: #0056b3; text-decoration: none; }

/* Profesyonel Arama Kutusu */
.search-container { width: 100%; max-width: 700px; }
.search-container form { display: flex; width: 100%; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 50px; overflow: hidden; }
.search-container input { flex: 1; padding: 15px 25px; font-size: 16px; border: 1px solid #ccc; border-right: none; outline: none; border-radius: 50px 0 0 50px; }
.search-container button { padding: 15px 30px; font-size: 16px; background-color: #0056b3; color: white; border: none; cursor: pointer; transition: background 0.3s; border-radius: 0 50px 50px 0; font-weight: bold; }
.search-container button:hover { background-color: #004494; }

/* Reklam ve Banner Yerleşimi İçin Boşluklar */
.ads-placeholder-top { margin: 30px 0; width: 100%; display: flex; justify-content: center; }

/* Meslekler Grid Yapısı (Yanyana 3'lü) */
.meslekler-section { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); margin-bottom: 40px; }
.meslekler-section h2 { margin-bottom: 25px; font-size: 22px; border-bottom: 2px solid #0056b3; padding-bottom: 10px; display: inline-block; }

.meslek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yanyana 3 sütun */
    gap: 15px; /* Sütunlar arası boşluk */
}

/* Meslek Kutucukları */
.meslek-item {
    background: #fdfdfd;
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 6px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Çok uzun isimlerin sonuna ... koyar */
}
.meslek-item:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer { background-color: #343a40; color: #fff; padding: 30px 0; text-align: center; margin-top: auto; }
.footer-content p { margin-bottom: 10px; }
.footer-links a { color: #adb5bd; text-decoration: none; margin: 0 10px; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .meslek-grid { grid-template-columns: repeat(2, 1fr); } /* Tablette 2 sütun */
}
@media (max-width: 576px) {
    .meslek-grid { grid-template-columns: 1fr; } /* Mobilde tek sütun */
    .search-container form { flex-direction: column; border-radius: 8px; }
    .search-container input { border-radius: 8px 8px 0 0; border: 1px solid #ccc; border-bottom: none; }
    .search-container button { border-radius: 0 0 8px 8px; }
}