/**
 * CSS Reset
 * Temel tarayıcı stillerini sıfırlar
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #2D2D2D;
    background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2D2D2D;
    line-height: 1.2;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; font-weight: 500; }
h5 { font-size: 16px; font-weight: 500; }
h6 { font-size: 14px; font-weight: 500; }

p {
    margin-bottom: 1em;
}

a {
    color: #10A37F;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

/* Sidebar menü linklerinde alt çizgi olmamalı */
.sidebar a,
.sidebar a:hover,
.sidebar a:visited,
.sidebar a:focus,
.sidebar a:active {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

