/* Genel Sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #f8f9fa;
  color: #2a2a2a;
  line-height: 1.8;
  font-size: 16px;
}

.hero-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-image {
  width: 40%;
  display: block;
  margin: 0 auto;
  object-fit: contain; /* cover yerine contain */
}


.hero-image-wrapper {
  width: 100%;
  height: 100%;
}


/* Ana Blog Yapısı */
.main-blog-wrapper {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.blog-container {
  max-width: 900px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blog-title {
  font-size: 2.75rem;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-weight: 700;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.blog-content {
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.2px;
  text-align: justify;
  line-height: 2;
}

.section-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 6px solid #d4af37;
  padding-left: 12px;
}

.blog-list {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: square;
  color: #444;
}

.blog-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.blog-paragraph {
  margin-bottom: 25px;
  color: #444;
}

.blog-content a {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 220px;
  }

  .blog-container {
    padding: 24px;
  }

  .blog-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .blog-content {
    font-size: 1rem;
  }
}