.misyonumuz-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #f1f2f2;
  animation: fadeIn 0.8s ease-in-out;
}

.content-wrapper {
  background: rgba(255, 255, 255, 0.02);
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.misyonumuz-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  /* İstediğin Gradient Geçişi */
  background: linear-gradient(to right, #ffffff, #009d6c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Sol Şerit Efekti */
  border-left: 5px solid #009d6c;
  padding-left: 15px;
}

.misyonumuz-title i {
  -webkit-text-fill-color: initial;
  color: #009d6c;
}

.misyonumuz-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(241, 242, 242, 0.8);
  margin-bottom: 20px;
}

.misyonumuz-content strong {
  color: #4ade80;
}

.onemli-detay {
  color: #4ade80 !important;
  font-weight: 700;
}

/* --- LİSTE YAPISI --- */
.list-container {
  margin: 40px 0;
}

.list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.list li {
  background: rgba(0, 157, 108, 0.03);
  border: 1px solid rgba(0, 157, 108, 0.1);
  padding: 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.list li:hover {
  transform: translateY(-5px);
  background: rgba(0, 157, 108, 0.08);
  border-color: #009d6c;
}

/* Liste maddelerinin yanındaki küçük yeşil işaret */
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #009d6c;
  opacity: 0.5;
}

.list-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.list-content {
  font-size: 0.95rem;
  color: rgba(241, 242, 242, 0.7);
  line-height: 1.6;
}

/* --- ALINTI (QUOTE) ALANI --- */
.quote {
  margin-top: 50px;
  padding: 35px;
  background: linear-gradient(145deg, #0f3d2e 0%, #231f20 100%);
  border-radius: 25px;
  border-left: 8px solid #009d6c;
  position: relative;
}

.quote::after {
  content: "\f10e"; /* FontAwesome Quote Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(0, 157, 108, 0.1);
}

.quote-content {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #f1f2f2;
  margin: 0;
}

.quote-content strong {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #4ade80;
  margin: 0;
}

/* --- ANİMASYONLAR --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
  .content-wrapper {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 30px 25px;
    border-radius: 20px;
  }
  .misyonumuz-title {
    font-size: 2rem;
    padding-left: 10px;
    border-left-width: 4px;
    margin-bottom: 25px;
  }
  .misyonumuz-content {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .list li {
    padding: 20px;
  }
  .quote {
    margin-top: 40px;
    padding: 30px 25px;
    border-radius: 20px;
  }
  .quote::after {
    font-size: 2.5rem;
    right: 20px;
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .misyonumuz-container {
    gap: 30px;
  }
  .content-wrapper {
    padding: 25px 20px;
  }
  .misyonumuz-title {
    font-size: 1.7rem;
  }
  .misyonumuz-content {
    font-size: 1rem;
  }
  .quote-content,
  .quote-content strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .misyonumuz-title {
    font-size: 1.5rem;
  }
  .list-title {
    font-size: 1rem;
  }
  .list-content {
    font-size: 0.9rem;
  }
}
