.about-page {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff8e1;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Başlık */
.about-header {
  text-align: center;
  margin-bottom: 80px;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.about-header h1 {
  color: #b88a00;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Hikaye Bölümü */
.about-story {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.story-image {
  flex: 1 1 400px;
}

.story-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.story-text {
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.story-text h2 {
  color: #b88a00;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.story-text p {
  line-height: 1.6;
  font-size: 1rem;
  color: #555;
}

/* Misyon & Vizyon */
.about-mission {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.mission, .vision {
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission:hover, .vision:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.mission h2, .vision h2 {
  color: #b88a00;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.mission p, .vision p {
  color: #555;
  line-height: 1.5;
}

/* WhatsApp Button */
.whatsapp-order {
  text-align: center;
  margin: 40px 0;
}

.whatsapp-order a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-order a:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 992px){
  .about-story {
    gap: 20px;
  }
}

@media(max-width: 768px){
  .about-story, .about-mission {
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width: 768px){
  .story-text{
    width: 100%;
    max-width: 500px; /* mission ile görsel denge için */
  }
}