body {
      margin: 0;
      background-color: #fffaf3;
      font-family: 'Crimson Text', serif;
      color: #4b2e2e;
      position: relative;
      min-height: 100vh;
    }

    header {
      text-align: center;
      padding: 40px 20px 10px;
      position: relative;
      z-index: 1;
    }

    header img.logo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #c25e4d;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3em;
      margin: 15px 0 5px;
    }

    nav {
      text-align: center;
      margin: 20px 0 40px;
      position: relative;
      z-index: 1;
    }

    nav a {
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
      color: #4b2e2e;
      transition: color 0.3s;
      font-size: 1.1em;
    }

    nav a:hover {
      color: #c25e4d;
    }

    main {
      max-width: 900px;
      margin: auto;
      padding: 0 20px 60px;
      position: relative;
      z-index: 1;
    }

    main h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
      color: #7b5e57;
    }

    ::placeholder {
  color: #a7897b;
  font-style: italic;
  opacity: 1; /* Bazı tarayıcılar için net görünüm */
}

    .form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 80px; /* Boşluğu artırdım, önce 40px idi */
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

    form {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
  width: 100%;
  padding: 16px;
  font-size: 1.1em;
  border: none;
  border-radius: 12px;
  background-color: #f9f4ef;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px #c25e4d44;
}

    button {
      padding: 12px;
      background-color: #c25e4d;
      color: white;
      font-size: 1em;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    button:hover {
      background-color: #a94839;
    }

    .contact-info {
      flex: 1 1 300px;
    }

    .contact-info p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    footer {
      text-align: center;
      padding: 20px;
      background-color: #f3e8d5;
      font-size: 0.9em;
      color: #4b2e2e;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 700px) {
      .form-section {
        flex-direction: column;
      }
    }
    .fade-in {
      opacity: 0;
      animation: fadeIn 1.5s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
