
/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff7e6; /* Açık sarı arka plan */
  color: #333;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: #fff3cc;
  border-bottom: 2px solid #f4c430;
  border-radius: 0 0 12px 12px;
}
.logo img { height: 60px; }
nav a { margin-left: 1rem; text-decoration: none; color: #555; font-weight: 500; }
nav a:hover { color: #f4c430; }
.hero { position: relative; margin: 2rem 0; border-radius: 12px; overflow: hidden; }
.hero-img { width: 100%; display: block; }
.hero-text { position: absolute; top: 30%; left: 10%; color: #fff; text-shadow: 1px 1px 6px rgba(0,0,0,0.7); }
.features, .content-blocks { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.feature, .block { background: #fffbe6; padding: 1.5rem; flex: 1 1 30%; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); text-align: center; }
.feature h2, .block h2 { color: #f4c430; }
form input, form textarea, form button { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border-radius: 6px; border: 1px solid #f4c430; }
form button { background: #f4c430; color: #333; font-weight: bold; cursor: pointer; border: none; }
form button:hover { background: #e2b007; }
footer { border-top: 2px solid #f4c430; padding: 1rem 0; text-align: center; color: #555; margin-top: 2rem; background: #fff3cc; border-radius: 12px 12px 0 0; }
@media(max-width: 768px) { header {flex-direction: column; gap: 0.5rem;} nav a {margin: 0 .5rem;} .features, .content-blocks {flex-direction: column;} .hero-text {position: static; margin-top: -60px; text-align: center;} }
