.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 2rem;
  }
  .org-row {
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  .org-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .org-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 12px;
    z-index: 2;
  }
  .org-label {
    min-width: 120px;
    background: linear-gradient(90deg, #686766, #ddd3d2);
    color: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px 12px 4px 12px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 0;
  }
  .org-name { font-weight: bold; font-size: 1rem; }
  .org-job { font-size: 0.9rem; font-weight: 500; }
  
  @media (max-width: 991px) {
    .org-row { flex-wrap: wrap; gap: 16px; }
    .org-img { width: 70px; height: 70px; }
    .org-label { min-width: 90px; font-size: 0.9rem; }
  }

/* Sayfanın üstünde tam genişlikte görsel için */
.about-hero-img {
  position: relative;
  width: 100vw;
  height: 100vh; /* Yüksekliği artırıldı */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  z-index: 1;
}
.about-hero-img img {
  width: 100vw;
  height: 100vh;
  max-width: none;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(40,40,40,0.35); /* saydam gri */
  z-index: 2;
  pointer-events: none;
}
.org-icon {
  font-size: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* Sticky footer fix for all pages */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer {
    margin-top: auto;
}