.about-section {
  /* Başlığın sabit menü altına kaymasını engelleyen düzeltme */
  padding-top: 11rem !important; /* Menü yüksekliği + rahat bir boşluk bırakır. */
  padding-bottom: 5rem; /* Alttaki varsayılan padding'i korur */
}

/* --- KARTLAR (ABOUT CARD) --- */
.about-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.about-card:hover {
  /* Hover'da kartı yukarı kaydırır */
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.about-card:hover .icon-box {
  /* Hover'da ikon kutusunu büyütür */
  transform: scale(1.1);
}

/* --- ANİMASYONLAR --- */
/* (Hakkımızda sayfasındaki başlık ve metinler için kullanılır) */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn { animation: fadeIn 0.8s ease-out forwards; }
.animate-slideUp { animation: slideUp 0.9s ease-out forwards; }


/* --- RESPONSIVE DÜZELTMELER --- */
@media (max-width: 768px) {
  .about-card {
    padding: 1.5rem;
  }
}

/* MOBİL HEADER YAPISINA GÖRE EK DÜZELTME (767px ve altı) */
@media (max-width: 767px) {
  .about-section {
    /* Mobil menü boşluğuna göre daha garanti bir padding */
    padding-top: 9rem !important; 
  }
}