/* Genel Gövde Ayarları */
body {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Paragraflar */
p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Başlıklar */
h1 {
    font-size: 32px;
    font-weight: 700;
}
h2 {
    font-size: 28px;
    font-weight: 600;
}
h3 {
    font-size: 24px;
    font-weight: 600;
}
h4 {
    font-size: 20px;
    font-weight: 500;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}

/* Linkler */
a {
    font-size: 15px;
}

/* Butonlar */
button,
.btn {
    font-size: 15px;
}

/* Mobil uyumluluk için medya sorgusu */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    a, p, .btn, button {
        font-size: 15px;
    }
}
