/* Genel Sayfa Başlığı */
.page-header {
  text-align: center;
}

/* İki Sütunlu Güvence Alanı */
.guvence-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  align-items: center;
}

.guvence-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--dynamic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guvence-text p {
  color: var(--text-dim);
  line-height: 1.9;
  margin-top: 0;
  margin-bottom: 20px;
}

.guvence-image {
  padding: 20px;
}

.guvence-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Güvence Sütunları */
.pillars-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pillar-item .icon {
  font-size: 3rem;
  margin-bottom: 25px;
  color: #DA8E50;
}

.pillar-item h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.pillar-item p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 1160px) {
  .guvence-text  {
    margin-bottom: 50px;
  }

  .guvence-grid {
    grid-template-columns: 1fr;
  }
  .guvence-image {
    order: -1; /* Resmi yukarı taşı */
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Genel Alan Stilleri */
.content-section {
  padding: 5% 5% 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0; /* Üstteki varsayılan boşluğu kaldırır */
  margin-bottom: 10px; /* Alt başlıkla arasına 10px boşluk ekler */
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}