      .ft {
      all: revert;
      box-sizing: border-box;
      display: block;
      font-family: system-ui, -apple-system, sans-serif;
      font-size: 14px;
      line-height: 1.5;
      color: #fff;
      background: #2e3192;
      padding: 40px 0;
      overflow: hidden;
      /* Stripe'ın 100vw çalışabilmesi için position context */
      position: relative;
    }
 
    .ft *, .ft *::before, .ft *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: inherit;
      line-height: inherit;
    }
 
    .ft-top {
      display: grid;
      grid-template-columns: 1.6fr repeat(3, 1fr);
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
 
    .ft-brand p {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-top: 14px;
      max-width: 240px;
    }
 
    .ft-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .ft-logo-box {
      width: 44px;
      height: 44px;
      background: #00a651;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .ft-logo-box svg {
      width: 24px;
      height: 24px;
      fill: #fff;
      display: block;
    }
 
    .ft-logo-text {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #fff;
    }
 
    .ft-logo-text span { color: #00a651; }
 
    .ft-col h4 {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #00a651;
      margin-bottom: 16px;
    }
 
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .ft-col ul li { display: block; }
 
    .ft-col ul li a {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.18s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
 
    .ft-col ul li a:hover { color: #fff; }
 
    .ft-col ul li a::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #00a651;
      opacity: 0;
      transition: opacity 0.18s;
      flex-shrink: 0;
      display: inline-block;
    }
 
    .ft-col ul li a:hover::before { opacity: 1; }
 
    .ft-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
    }
 
    .ft-contact-item svg {
      width: 15px;
      height: 15px;
      min-width: 15px;
      stroke: #00a651;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-top: 1px;
      display: block;
    }
 
    .ft-contact-item span {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }
 
    .ft-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      flex-wrap: wrap;
      gap: 12px;
    }
 
    .ft-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
    .ft-copy strong { color: rgba(255,255,255,0.55); font-weight: 500; }
 
    .ft-sub { display: flex; align-items: center; gap: 6px; }
    .ft-sub a { font-size: 11px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
    .ft-sub a:hover { color: rgba(255,255,255,0.7); }
    .ft-sub span { font-size: 11px; color: rgba(255,255,255,0.2); }
 
    .ft-social { display: flex; gap: 8px; }
    .ft-social a {
      width: 32px; height: 32px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.18s, border-color 0.18s;
      text-decoration: none;
    }
    .ft-social a:hover { background: #00a651; border-color: #00a651; }
    .ft-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.65); transition: fill 0.18s; display: block; }
    .ft-social a:hover svg { fill: #fff; }
 
    /*
      STRİPE — .container ne kadar dar olursa olsun tam ekran genişliğinde kalır.
      Teknik: position:relative olan .ft içinde,
      left: 50% ile ortaya alınıp margin-left: -50vw ile sola çekilir,
      width: 100vw ile viewport genişliğine yayılır.
      overflow:hidden olan .ft kaldırıldı, stripe clip'lenmez.
    */
    .ft-stripe {
      position: relative;
      left: 50%;
      margin-left: -50vw;
      width: 100vw;
      height: 4px;
      background: linear-gradient(90deg, #2e3192 0%, #00a651 100%);
    }
 
    @media (max-width: 700px) {
      .ft-top { grid-template-columns: 1fr 1fr; }
      .ft-brand { grid-column: 1 / -1; }
    }
 
    @media (max-width: 420px) {
      .ft-top { grid-template-columns: 1fr; }
      .ft-bottom { flex-direction: column; align-items: flex-start; }
    }
    /* Slider css */
.sl-wrap *,
.sl-wrap *::before,
.sl-wrap *::after {
    box-sizing: border-box;
}

.sl-track {
    width: 100%;
}

.sl-slide {
    width: 100%;
}

.sl-track-outer {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: transparent;
}

.sl-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.sl-slide {
    min-width: 100%;
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

.sl-bg {
    position: absolute;
    inset: 0;
}

.sl-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-bg-pattern {
    width: 100%;
    height: 100%;
}

.sl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,60,0.82) 0%, rgba(10,12,60,0.2) 60%, transparent 100%);
}

.sl-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}

.sl-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #00a651;
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    margin-bottom: 14px;
}

.sl-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px; 
}
.sl-title a {
    color: #fff;
    text-decoration: none;
}

.sl-title a:hover {
    color: #00a651;
}
.sl-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 600px;
}

.sl-prev, .sl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sl-prev { left: 16px; }
.sl-next { right: 16px; }

.sl-prev svg, .sl-next svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.sl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.sl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 20px; 
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto; 
}

.sl-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b4b2a9;
    transition: all 0.25s;
}

.sl-dot.active .sl-dot-inner {
    background: #2e3192;
    width: 24px;
    border-radius: 4px;
}

/* Başkanın mesajı */

  .bm-wrap { font-family: system-ui, sans-serif; padding: 0rem 0; }
  .bm-card { background: #ffffff; border-radius: 10px; overflow: hidden; border: 0.5px solid #e8e3db; max-width: 560px; margin: 0 auto; }
  .bm-top { background: #2e3192; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
  .bm-top-bg { position: absolute; inset: 0; }
  .bm-top-bg svg { width: 100%; height: 100%; }
  .bm-photo-area { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column;   }
  .bm-photo { width: 100%; max-height: 320px; object-fit: cover; object-position: top; display: block; }
  .bm-photo-placeholder { width: 100%; height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
  .bm-photo-placeholder svg { width: 72px; height: 72px; stroke: rgba(255,255,255,0.25); fill: none; stroke-width: 1; }
  .bm-photo-placeholder span { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
  .bm-name-strip { width: 100%; background: #00a651; padding: 16px 28px; }
  .bm-name { font-size: 15px; font-weight: 600; color: #fff; margin: 0; }
  .bm-title-label { font-size: 11px; color: rgba(255,255,255,0.82); margin-top: 2px; letter-spacing: 0.04em; }
  .bm-body { padding: 36px 36px 40px; }
  .bm-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-left:20px; }
  .bm-eyebrow-line { width: 28px; height: 3px; background: #00a651; border-radius: 2px; flex-shrink: 0; }
  .bm-eyebrow-text { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
  .bm-heading { font-size: 22px; font-weight: 600; color: #2e3192; line-height: 1.3; margin-bottom: 20px; letter-spacing: -0.02em; }
  .bm-quote-mark { font-size: 56px; line-height: 0.6; color: #00a651; font-family: Georgia, serif; margin-bottom: 14px; display: block; opacity: 0.65; }
  .bm-text { font-size: 13.5px; color: #4b5563; line-height: 1.8; margin-bottom: 14px; }
  .bm-divider { width: 40px; height: 2px; background: #e5e7eb; margin: 22px 0; }
  .bm-sig { display: flex; align-items: center; gap: 12px; }
  .bm-sig-dot { width: 34px; height: 34px; border-radius: 50%; background: #2e3192; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .bm-sig-dot svg { width: 15px; height: 15px; fill: #fff; }
  .bm-sig-name { font-size: 13px; font-weight: 600; color: #2e3192; }
  .bm-sig-role { font-size: 11px; color: #9ca3af; margin-top: 1px; }
  
  .cards-wrapper {
    padding: 2rem 0;
    font-family: 'DM Sans', sans-serif;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid rgba(46, 49, 146, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(46, 49, 146, 0.14);
  }

  .card-header {
    background: #2e3192;
    padding: 20px 20px 16px;
    position: relative;
    overflow: hidden;
  }

  .card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }

  .card-tag {
    display: inline-block;
    background: rgba(0, 166, 81, 0.22);
    color: #00e676;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .card-title { 
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
  }

  .card-visual {
    position: relative;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .card-visual svg {
    width: 100%;
    height: 100%;
  }

  .card-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(46, 49, 146, 0.07);
  }

  .card-excerpt {
    font-size: 13px;
    color: #6b6f8a;
    line-height: 1.65;
    margin: 0 0 16px;
    font-weight: 300;
  }

  .card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #2e3192;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
    padding: 8px 14px;
    border: 1.5px solid #2e3192;
    border-radius: 8px;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'DM Sans', sans-serif;
  }

  .card-cta:hover {
    background: #2e3192;
    color: #ffffff;
  }

  .card-cta:hover .cta-arrow {
    transform: translateX(3px);
  }

  .cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 14px;
  }

  .card:nth-child(2) .card-header {
    background: #00a651;
  }

  .card:nth-child(2) .card-cta {
    color: #00a651;
    border-color: #00a651;
  }

  .card:nth-child(2) .card-cta:hover {
    background: #00a651;
    color: #ffffff;
  }

  .card:nth-child(3) .card-header {
    background: linear-gradient(135deg, #2e3192 0%, #00a651 100%);
  }

  .card:nth-child(3) .card-cta {
    color: #2e3192;
    border-color: #2e3192;
  }

  .card:nth-child(3) .card-cta:hover {
    background: #2e3192;
    color: #ffffff;
  }

  @media (max-width: 640px) {
    .cards-grid {
      grid-template-columns: 1fr;
    }
  }

    