.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Arka Planlar */
.about-hero,
.about {
  background-color: #000000;
  color: white;
  padding: 60px 0;
}

/* Hakkımızda Üst Kısım */
.about-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-hero-text {
  flex: 1 1 50%;
}

.about-hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.about-hero-text p {
  padding-top: 20px;
  font-size: 1rem;
}

/* Görseller */
.about-hero-image,
.about-image {
  position: relative;
  z-index: 1;
}

.about-hero-image img,
.about-image img {
  width: 300px;
  height: auto;
  display: block;
  z-index: 2;
  position: relative;
}

/* Çizgili Arka Plan */
.stripes {
  position: absolute;
  top: 0;
  right: -25px;
  width: 40px;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #FFF105,
    #FFF105 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: -1;
}

.stripes.reverse {
  left: -25px;
  right: auto;
}

/* Misyon Alanı */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1 1 45%;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.about-text p {
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Butonlar */
.about-btn {
  display: inline-block;
  padding: 12px 24px;
  margin-right: 12px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn.primary {
  background-color: #ffc107;
  color: #000;
}

.about-btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #FFF105;
}

.sube-btn:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}



.our-story-banner {
  text-align: center;
  padding: 60px 0 30px;
  background-color: white;
}

.our-story-banner h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
}

.our-services {
  background-color: white;
  padding: 30px 20px 60px;
  color: #000;
}

.services-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-column {
  flex: 1 1 30%;
  min-width: 250px;
}

.service-column p {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service-column i {
  margin-right: 10px;
  color: #FFF233;
  min-width: 20px;
  text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .about-hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .stripes {
    display: none;
  }

  .about-hero-text h1,
  .about-text h1 {
    font-size: 2rem;
  }

  .btn {
    margin-bottom: 10px;
  }
    .services-columns {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .service-column {
    width: 100%;
    max-width: 400px;
  }
}