/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #eef1f6, #f7f9fc);
    color: #2c3e50;
    line-height: 1.7;
    padding: 0;
    margin: 0;
}

/* Başlık */
header {
    background: #0d6efd;
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    letter-spacing: 1px;
}

/* Ana İçerik */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Blog Kartı */
section {
    background-color: #fff;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

h2 {
    font-size: 1.8rem;
    color: #0d6efd;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #444;
}

ul, ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 6px;
}

/* Görseller */
img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Linkler */
a {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #084298;
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    section {
        padding: 20px;
    }
}
