/* ======================================= */
/* CSS DEĞİŞKENLERİ VE GENEL SIFIRLAMA     */
/* ======================================= */
:root {
    --primary-color: #667eea; /* AKKDER Mavi/Mor */
    --primary-dark: #5a6ce4;  /* Hover ve Aktif durum */
    --secondary-color: #FFD700; /* Altın Sarısı Vurgu */
    --text-dark: #2d3748;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: #f7f7f7; 
    min-height: 100vh;
    color: var(--text-dark);
    padding-top: 90px; /* Header'ın altında başlaması için */
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Link Stilleri */
a {
    text-decoration: none;
    color: inherit;
}
