/* Genel stil */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #1e1e2f;
  color: white;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background-color: #e0e7ff;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Hakkımızda */
.about {
  background-color: #ffffff;
  padding: 40px 0;
}

.about ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.about ul li::before {
  content: " ";
}

/* İletişim */
.contact {
  background-color: #f3f4f6;
  padding: 40px 0;
}

.contact a {
  color: #1e40af;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #1e1e2f;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

  .photo-row {
      display: flex;
      justify-content: space-between;
      gap: 10px; /* Fotoğraflar arası boşluk */
      padding: 20px;
    }

   .photo-row img {
      width: 100%;
      height: 200px; /* Sabit yükseklik */
      object-fit: cover; /* Kaliteyi bozmadan sığdırır */
      border-radius: 8px;
    }

    .photo-wrapper {
      flex: 1;
    }