<style>
/* Genel hizalama ve boşluklar */
section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Accordion alanı hizalama */
.faq-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.faq-accordion h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #f7f7f7;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
}
.faq-answer {
  padding: 15px;
  background: #fff;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ISO Belgelendirme Neden Önemlidir? gösterişli bölüm */
.blog-section .section-header h1 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #2c3e50;
  position: relative;
}
.blog-section .section-header h1::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #00b894;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Bölümler arası boşluk standartlaştırma */
section + section {
  margin-top: 20px;
}

/* Kart yapıları görsel düzenleme */
.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.benefit-cards .card {
  max-width: 300px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.benefit-cards .card:hover {
  transform: translateY(-5px);
}

.highlight-box {
  background: #f1f1f1;
  padding: 30px;
  border-left: 6px solid #00b894;
  margin-top: 40px;
  text-align: center;
  border-radius: 8px;
}
</style>
