.container {
  padding: 0 var(--spacing-md);
}

/* Hakkımızda Sayfası Stilleri */

/* Ana başlık stili */
.page-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: var(--spacing-xl) 0;
  letter-spacing: var(--letter-spacing-md);
  color: var(--text-color);
  position: relative;
}

.page-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-red);
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-page {
  padding: 40px 0 80px;
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

/* Tarihçemiz Bölümü */
.about-history {
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.about-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #555;
}

.about-text p strong {
  color: #333;
  font-weight: 500;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-list-item {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.list-icon {
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

.list-text {
  color: #333;
  font-size: 14px;
}

/* Nasıl Çalışıyoruz Bölümü */
.about-work {
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.about-work .section-title {
  margin-bottom: 15px;
  text-align: left;
}

.about-work .about-section-content {
  flex-direction: row-reverse;
}

.about-work .about-text p {
  position: relative;
  padding-left: 15px;
}

/* Ekip Bölümü */
.about-team {
  margin-bottom: 60px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.about-team .section-title {
  text-align: center;
  display: block;
}

.about-team .section-title:after {
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
}

.team-description {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.5;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.team-member {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.team-icon {
  margin-bottom: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.member-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.member-position {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .team-member {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }

  .about-image {
    max-width: 450px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .about-section-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-work .about-section-content {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-image {
    margin: 0 auto;
    max-width: 500px;
  }

  .team-member {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .about-history,
  .about-work,
  .about-team {
    padding: 25px;
    margin-left: var(--spacing-sm);
    margin-right: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: var(--font-size-2xl);
    margin: var(--spacing-lg) 0;
  }

  .section-title {
    font-size: var(--font-size-xl);
  }

  .about-page {
    padding: 20px 0 60px;
  }

  .about-history,
  .about-work,
  .about-team {
    margin-bottom: 40px;
    padding: 20px;
    margin-left: var(--spacing-sm);
    margin-right: var(--spacing-sm);
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .team-members {
    gap: 20px;
    padding: 0 var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .page-title {
    font-size: var(--font-size-xl);
    margin: var(--spacing-md) 0;
  }

  .page-title:after {
    width: 60px;
    height: 3px;
  }

  .section-title {
    font-size: var(--font-size-lg);
  }

  .team-member {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-page {
    padding: 10px 0 40px;
  }

  .about-history,
  .about-work,
  .about-team {
    margin-bottom: 30px;
    padding: 20px 15px;
    border-radius: 6px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .about-image {
    max-width: 100%;
  }

  .about-list-item {
    padding: 8px 10px;
  }

  .list-text {
    font-size: var(--font-size-xs);
  }

  .list-text strong {
    font-size: var(--font-size-sm);
  }
}

/* Masaüstü görünümünü bozma */
@media (min-width: 992px) {
  .container {
    padding: 0;
  }

  .about-history,
  .about-work,
  .about-team {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hover efektleri sadece mouse kullanan cihazlar için olmalı */
@media (hover: hover) {
  .about-list-item:hover {
    background-color: #f2f2f2;
    transform: translateX(3px);
  }

  .team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--primary-red);
  }

  .team-member:hover .team-icon {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Hover efektlerini kaldır, mobil için temel stilleri burada tanımla */
@media (hover: none) {
  .about-list-item:hover {
    background-color: #f9f9f9;
    transform: none;
  }

  .team-member {
    border-bottom: 1px solid #eee;
  }

  .team-member:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  }

  .team-member:hover .team-icon {
    transform: none;
  }
}
