/* Genel stil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #f4f7fb;
  color: #333;
}

/* Konteyner */
.container {
  width: 80%;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #2d2d2d;
  color: #fff;
  padding: 40px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  text-align: center;
  font-size: 3em;
  letter-spacing: 1px;
}

header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
}

header nav ul li {
  margin: 0 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

header nav ul li a:hover {
  color: #ff7f50;
  text-decoration: underline;
}

/* Hakkımızda Bölümü */
.about {
  padding: 40px 20px;
  background-color: #fff;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.about p {
  font-size: 1.2em;
  color: #666;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .about h2 {
    font-size: 1.8em; /* Küçülttük */
  }
  .about {
    padding: 40px 20px;
    background-color: #fff;
    margin: 40px auto;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .about p {
    font-size: 1em; /* Küçülttük */
  }
}
