/* ========== HAKKIMIZDA HERO ========== */
.about-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 20px 80px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 16px;
  }
}



/* ========== HAKKIMIZDA - HİKAYEMİZ ========== */
.about-story {
  background-color: #fff;
  padding: 100px 20px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.about-story h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.about-story p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-story {
    padding: 70px 20px;
  }

  .about-story h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-story p {
    font-size: 15px;
    text-align: justify;
  }
}



/* ========== DEĞERLERİMİZ / MİSYON & VİZYON ========== */
.about-values {
  background-color: #f8f9fa;
  padding: 100px 20px;
  text-align: center;
}

/* Başlık kısmı */
.values-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.values-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Üst kutular grid */
.values-grid {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* Kart yapısı */
.value-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.value-card:hover,
.value-card.active {
  border: 1px solid #e63946;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.value-card .icon {
  background-color: #e63946;
  color: #fff;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

/* Alt kısım (Misyon & Vizyon) */
.mission-vision {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.mv-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.mv-card:hover {
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.mv-card .icon {
  background-color: #e63946;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mv-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-header h2 {
    font-size: 26px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mv-card {
    text-align: center;
  }

  .mv-card .icon {
    margin: 0 auto 10px;
  }
}

