/* about.css */

/* Genel vücut ve font ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Başlık ve menü */
header {
    background-color: #2C3E50;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* İçerik bölümü */
main {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
    font-size: 2.2em;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-us h3 {
    font-size: 1.8em;
    color: #34495E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.about-us ul {
    list-style-type: none;
    padding-left: 0;
}

.about-us ul li {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #2C3E50;
}

.about-us ul li strong {
    color: #E74C3C;
}

/* Footer */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

footer nav ul {
    margin-top: 10px;
}

footer nav ul li {
    display: inline;
    margin: 0 15px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

footer nav ul li a:hover {
    text-decoration: underline;
}
