/* Genel Ayarlar */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9fb;
  color: #212121;
  line-height: 1.6;
}

/* Header */
.header {
  background: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.header .logo {
  font-weight: bold;
  font-size: 22px;
  color: #ff6b35; /* yeni ana turuncu */
}

.header ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.header a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header a:hover {
  color: #ff6b35;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fef3ec, #ffffff);
}

.hero h1 {
  font-size: 28px;
  color: #1f1f1f;
}

.hero p {
  font-size: 16px;
  color: #555;
}

.hero textarea {
  width: 100%;
  max-width: 400px;
  height: 180px;
  margin: 20px auto;
  display: block;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

/* Form Satırı */
.form-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

select, button {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

select {
  background-color: white;
  cursor: pointer;
}

button {
  background: #ff6b35;
  border: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:hover {
  background: #ff3d00;
}

/* Özellikler Bölümü */
.features {
  text-align: center;
  padding: 60px 20px;
  background: #fffaf6;
}

.features h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #1f1f1f;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.features-grid div {
  flex: 1 1 200px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #ffddc8;
  transition: transform 0.3s ease;
}

.features-grid div:hover {
  transform: translateY(-4px);
}

.blog-preview {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.blog-preview h2 {
  font-size: 24px;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.blog-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  width: 300px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  color: #ff6b35;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 24px;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.testimonial-card {
  background: #fff9f5;
  border: 1px solid #ffdfcf;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.testimonial-card strong {
  color: #ff6b35;
  font-size: 14px;
}


/* Footer */
.footer {
  background: #eeeeee;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}
