/* =============================================
   Hakkımızda Sayfası
   ============================================= */

@import url("fonts.css");
/* === Banner Bölümü === */
.about-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
}

.about-banner-container {
  width: 100%;
}

.about-banner-image {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.about-banner-image img {
  width: auto;
  height: 100%;
  display: block;
}

/* === İçerik Bölümü === */
.about-content-section {
  padding: 0 0 80px;
  background: var(--bg-color);
}

.about-content-container {
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.about-main-title {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.about-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: var(--secondary-color);
}

.about-subtitle {
  font-size: 20px;
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: var( --gray-900);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.about-text-content {
  margin-top: 20px;
  text-align: center;
}

.about-paragraph {
  font-size: 15px;
  color: var( --gray-900);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: center;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .about-content-container {
    max-width: 800px;
    padding: 0 60px;
  }
}

@media (max-width: 992px) {
  .about-content-section {
    padding: 60px 0;
  }

  .about-content-container {
    padding: 0 40px;
  }

  .about-main-title {
    font-size: 40px;
  }

  .about-subtitle {
    font-size: 15px;
  }

  .about-paragraph {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-content-section {
    padding: 50px 0;
  }

  .about-content-container {
    padding: 0 25px;
  }

  .about-main-title {
    font-size: 36px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .about-main-title::after {
    width: 60px;
  }

  .about-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .about-text-content {
    margin-top: 35px;
  }

  .about-paragraph {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .about-content-section {
    padding: 40px 0;
  }

  .about-content-container {
    padding: 0 20px;
  }

  .about-main-title {
    font-size: 32px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .about-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .about-text-content {
    margin-top: 30px;
  }

  .about-paragraph {
    font-size: 12px;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 12px;
  }
}
