/* Hakkımızda sayfasına özel biçimlendirme */
.page-title{
  text-align:center;
  margin-bottom:40px;
}
.page-title h2{
  color:#e60000;
  font-size:1.5rem;
  margin-bottom:10px;
}
.page-title p{
  color:#333;
  font-size:0.95rem;
}

/* İçerik kutuları */
.about-container .card{
  background:#fff;
  border-left:5px solid #e60000;
  min-height:240px;
}
.about-container .card:hover{
  transform:translateY(-6px);
}
.about-container .card h3{
  color:#e60000;
}
.about-container .card p{
  color:#222;
  line-height:1.6;
  font-size:0.95rem;
}
/* Kartların yerleşimi: responsive grid */
.about-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;
  align-items: start;
}
/* =========================================================
   HAKKIMIZDA REV5 - OTOMASYON EŞİTLEME BLOĞU
   (Gölge, radius, hover güçlendirme, başlık imzası)
   ========================================================= */

/* Sayfa başlığı - üst nefes ve font boyutu ayarı */
.page-title {
  margin: 120px 0 40px;
  text-align: center;
}

.page-title h2 {
  font-size: 1.8rem;
  color: #111;
  font-weight: 600;
}

/* Kart stilini otomasyon görünümüne eşitle */
.about-container .card {
  background: #fff;
  border-radius: 12px;                /* köşe yumuşatma */
  border-left: 4px solid #e60000;     /* kurumsal kırmızı imza */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* hafif gölge */
  transition: all 0.3s ease;
}

/* Hover – yumuşak yükselme + gölge derinleşmesi */
.about-container .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Kart başlık altına kırmızı imza çizgisi */
.about-container .card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #e60000;
  margin-top: 6px;
  border-radius: 2px;
}
/* =========================================================
   HAKKIMIZDA REV5.3 - HOVER'DA YANAN KIRMIZI GÖLGE
   ========================================================= */

/* Kart - normal durumda sade */
.about-container .card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #e60000;
  border-top: 4px solid #e60000;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.08); /* sadece hafif gri gölge */
  transition: all 0.3s ease;
}

/* Hover - kırmızı ışık aktifleşir */
.about-container .card:hover {
  transform: translateY(-6px);
  box-shadow:
    -8px -8px 16px rgba(230, 0, 0, 0.35),
     6px  6px 18px rgba(0, 0, 0, 0.12);
}
/* ===== HAKKIMIZDA BAŞLIK ÖN PLAN GÜÇLENDİRME (REV6) ===== */
.page-title {
  position: relative;
  padding: 140px 20px 100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55); /* arka planı hafif karartır */
  z-index: -1;
}

.page-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

.page-title p {
  color: #f1f1f1;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 20px auto 0;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
