/* Genel yazı tipi ve metin ayarları */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  padding: 0;
}

header {
  background-color: #FAFAFA;
}

/* Başlıklar */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
}

h2 {
  font-size: 2rem;
  font-weight: 300;
}

h3 {
  font-size: 1.5rem;
  font-weight: 300;
}

.service-box h3 {
  color: #1f2937; /* Başlık rengi */
}

.service-box p {
  color: #4b5563; /* Paragraf rengi */
}

/* Paragraflar */
p {
  font-size: 1rem;
  font-weight: 300;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

/* Linkler */
a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 400;
}
body a:hover {
  text-decoration: underline;
}

/* Menü bağlantıları (tüm sayfalarda aynı görünüm için) */
nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2E2E2E;
  text-decoration: none;
  line-height: 1;
  padding: 0.5rem 0;     /* Daha az dikey boşluk */
  display: inline-block;
}
/* Menüdeki linklerde underline olmasın */
nav a:hover {
  text-decoration: none;
}

.dropdown-content {
  min-width: 250px;
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
}
.dropdown-content a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2E2E2E;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
}

/* Butonlar */
button {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: white;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #43a047;
}
footer {
  background-color: #FAFAFA;
}
.iletisim-alani {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 4rem 0 4rem 0;
  padding: 2rem;
	}

.bilgi-kutusu {
  width: 400px;
  flex-shrink: 0;
  padding: 2rem;
  background-color: #f1f1f1;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* Hafif ama net katman etkisi */
}

.form-kutusu {
  width: 1000px;
  flex-shrink: 0;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #f1f1f1;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* Hafif ama net katman etkisi */
	}

.form-kutusu form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

.form-kutusu input,
.form-kutusu textarea {
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.4rem 0;
  font-size: 0.7rem;
  background: transparent;
  box-sizing: border-box; /* ← burası önemli */
}

.form-kutusu input:focus,
.form-kutusu textarea:focus {
  outline: none;
  border-bottom: 1px solid #71bead;
}

.form-kutusu button {
  background-color: #71bead;
  color: white;
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 40px;
  margin-top: 0.5rem; /* butonla üst eleman arasında mesafe */
}
.bilgi-parca strong {
  font-family: 'Poppins', sans-serif; /* Menü ve başlıklarla uyumlu */
  font-size: 0.95rem; /* Dilersen küçültebilirsin */
  font-weight: 500;
  color: #2E2E2E;
}
.form-kutusu,
.bilgi-kutusu {
  height: 380px; /* örnek sabit yükseklik */
}
@media (max-width: 768px){
  header .menu-container > nav .dropdown-content{
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box;
    margin: .5rem 0 1rem 0;      /* istersen */
    padding: .5rem 1rem 1rem 1rem; /* mevcut görünüme uyumlu */
  }
}
