*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Genel Resetleme ve Body Stilleri */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    
    /* Sticky Footer için Flexbox */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1; /* Header ve footer arasındaki tüm boşluğu doldurur */
}

h1 {
    color: #1a1a1a;
} 