/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #555;
    margin-top: 20px;
}

p, ul {
    font-size: 1rem;
    line-height: 1.8;
}

ul {
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* İletişim Bölümü */
#contact ul {
    list-style: none;
    padding: 0;
}

#contact ul li {
    margin: 10px 0;
}

#contact ul li a {
    color: #007BFF;
    text-decoration: none;
}

#contact ul li a:hover {
    text-decoration: underline;
}

/* Makale Bölümü */
#article article {
    margin-top: 20px;
}

#article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#article ul {
    margin: 10px 0;
}

#article ul li {
    margin: 5px 0;
}