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

/* Header & Nav */
header { background-color: #fff; border-bottom: 3px solid #0056b3; padding: 15px 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.logo img { height: 70px; }
.search-area { flex-grow: 1; margin: 0 50px; display: flex; }
.search-area input { width: 100%; padding: 12px; border: 2px solid #0056b3; border-radius: 4px 0 0 4px; outline: none; font-size: 14px; }
.search-area button { padding: 12px 25px; background-color: #0056b3; color: white; border: none; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; font-size: 14px; }
.search-area button:hover { background-color: #004494; }
nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 25px; border-top: 1px solid #eee; padding-top: 10px; }
nav a { text-decoration: none; color: #444; font-weight: 600; text-transform: uppercase; font-size: 14px; transition: color 0.3s; }
nav a:hover { color: #0056b3; }

/* Hero & Content */
.hero { position: relative; text-align: center; color: white; margin-bottom: 30px; overflow: hidden; }
.hero img { width: 100%; height: 450px; object-fit: cover; display: block; filter: brightness(0.8); }
.hero-text { position: absolute; top: 50%; left: 10%; transform: translateY(-50%); text-align: left; max-width: 600px; }
.hero-text h1 { font-size: 3em; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.hero-text p { font-size: 1.5em; font-weight: 300; text-shadow: 1px 1px 2px rgba(0,0,0,0.7); }
.section-title { text-align: left; border-bottom: 2px solid #ddd; padding-bottom: 10px; margin: 40px 0 20px; color: #333; font-weight: 300; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-bottom: 40px; }
.card { background: white; padding: 25px; border: 1px solid #e1e1e1; border-radius: 4px; text-align: left; transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-color: #0056b3; }
.card h3 { margin-top: 0; color: #0056b3; }
.partner-box { background-color: white; border: 1px solid #ddd; padding: 20px; display: flex; align-items: center; justify-content: space-between; margin-top: 30px; border-radius: 5px; }
.partner-info h2 { margin: 0 0 10px 0; color: #2c3e50; }
.partner-logo img { height: 100px; }
footer { background-color: #222; color: #aaa; text-align: center; padding: 30px 0; margin-top: 50px; font-size: 0.9em; }

/* PRO-BOT Styles (Korundu) */
.pro-bot-toggle {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #fff; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer; z-index: 1000; display: flex; align-items: center; justify-content: center;
    border: 2px solid #0056b3; animation: floatBot 3s ease-in-out infinite; transition: transform 0.3s;
}
.pro-bot-toggle:hover { transform: scale(1.1); }
.pro-bot-toggle img { width: 70%; height: auto; object-fit: contain; }
@keyframes floatBot { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

.pro-bot-window {
    position: fixed; bottom: 100px; right: 30px; width: 300px; height: 400px;
    background-color: #fff; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none; flex-direction: column; overflow: hidden; z-index: 999;
}
.pro-bot-window.active { display: flex; }
.bot-header { background-color: #0056b3; color: white; padding: 12px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bot-close-btn { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }
.bot-messages { flex-grow: 1; padding: 15px; overflow-y: auto; background-color: #f4f7f6; font-size: 13px; }
.message { margin-bottom: 10px; clear: both; }
.bot-message { background-color: #e9ecef; color: #333; padding: 8px 12px; border-radius: 12px 12px 12px 0; float: left; max-width: 85%; position: relative; margin-left: 35px; }
.bot-message::before {
    content: ''; position: absolute; left: -40px; bottom: 0; width: 30px; height: 30px;
    background-image: url('../images/robot-icon.png'); background-size: contain; background-repeat: no-repeat;
    background-position: center; background-color: #fff; border-radius: 50%; border: 1px solid #ddd;
}
.user-message { background-color: #0056b3; color: white; padding: 8px 12px; border-radius: 12px 12px 0 12px; float: right; max-width: 85%; }
.bot-options { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; clear: both; float: left; width: 100%; }
.option-btn {
    background-color: #fff; border: 1px solid #0056b3; color: #0056b3; padding: 10px;
    border-radius: 8px; cursor: pointer; font-size: 12px; text-align: left;
    transition: all 0.2s; width: 100%; display: flex; align-items: center;
}
.option-btn:hover { background-color: #0056b3; color: white; transform: translateX(5px); }

/* --- YENİ EKLENEN: COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(40, 40, 40, 0.95);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 2000; /* Robotun üzerinde görünsün */
    display: none; /* JS ile kontrol edilecek */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background-color: #004494;
}
