:root {
    /* Kurumsal Mavi Tonları - Güven Veren Renkler */
    --primary-color: #0f172a; /* Çok Koyu Lacivert (Midnight Blue) - Premium Otorite */
    --secondary-color: #2563eb; /* Royal Blue - Daha Tok ve Kurumsal */
    --accent-color: #f0f9ff; /* Buz Mavisi - Ferahlık */
    --text-dark: #1e293b; /* Tam siyah değil, koyu gri - Göz yormaz */
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f8fafc;
    overflow-x: hidden; /* Mobilde sağa sola kaymayı engeller */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}