/* ==== Dijisigo Tema Override ==== */

a {
    text-decoration: none !important;
}

/* ====== NAVBAR ====== */
.header {
    background: linear-gradient(135deg, #E8E1FF, #E8E1FF);
    height: auto;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.nav-center {
    display: flex !important;
    justify-content: center !important;
    transform: translateX(24px);
}

.navbar {
    align-items: center;
}

.navbar-brand img {
    height: 40px;
}

.navbar-light .navbar-nav .nav-link {
    color: #111 !important;
    font-weight: 600;
    font-size: 1.08rem;
    margin: 0 1rem;
    position: relative;
    transition: color 0.25s ease-in-out;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6A1B9A, #3F51B5);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #6A1B9A !important;
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.nav-right .nav-link,
.nav-right .nav-link i {
    color: #111 !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== GENEL SAYFA ====== */
body {
    background: linear-gradient(180deg, #E8E1FF, #E3F0FF);
    font-family: 'Poppins', sans-serif;
    padding-top: 84px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main, .main {
    margin-left: 0 !important;
    padding: 2rem 1.5rem;
    padding-top: 20px !important;
    flex: 1;
}

/* ====== ÜRÜN SAYFASI ====== */
.products-section {
    background: transparent;
    min-height: 70vh;
    padding-top: 20px;
    margin-top: 0;
}

.section-title {
    font-size: 1.75rem;
    color: #2e1d47;
    margin-top: 0;
    padding-top: 0;
}

/* === ÜRÜN KARTLARI === */
.row.justify-content-center {
    justify-content: center !important;
}

.insurance-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    padding: 1.5rem 1rem;
    min-height: 280px;
}

.insurance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.insurance-card:hover .product-icon {
    transform: scale(1.08);
}

/* Kart içi buton */
.btn-offer {
    background-color: #5c2cb8;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    transition: background 0.3s ease;
}

.btn-offer:hover {
    background-color: #7a42e0;
}

/* Ürün açıklaması gizli */
.short-desc {
    display: none;
}

/* Responsive düzen */
@media (max-width: 992px) {
    .product-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .insurance-card {
        min-height: 260px;
    }

    .product-icon {
        width: 100px;
        height: 100px;
    }
}

/* ==== Mobilde Header Yüksekliğini ve Sağ İkonları Düzenle ==== */
@media (max-width: 576px) {
    /* Header genel sıkı görünüm */
    .navbar {
        min-height: 42px !important; /* header yüksekliği azalsın */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .header {
        padding: 0.15rem 0.8rem !important; /* üst-alt boşluğu azalt */
    }

    .navbar-brand img {
        height: 30px !important; /* logo mobilde daha küçük */
    }

    /* Sağdaki ikonlar tek satırda hizalansın */
    .nav-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end;
        gap: 8px;
    }

    .nav-right .nav-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-right .nav-link {
        padding: 0 !important;
        line-height: 1 !important;
    }

    .nav-right .nav-link i {
        font-size: 1rem !important;
    }

    .badge-number {
        transform: scale(0.85);
    }
}

/* ==== Mobilde hamburger (menü) ikonunu kullanıcı ikonunun yanına hizala ==== */
@media (max-width: 576px) {
    /* Grid yapısını düzelt: logo | boşluk | sağ ikonlar + menü */
    .navbar-grid {
        grid-template-columns: auto 1fr auto;
        align-items: center !important;
    }

    /* Sağ kısım (bildirim, mesaj, profil + hamburger) */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px;
    }

    /* Hamburger’ı da aynı hizada göster */
    .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0 !important;
        border: none;
        order: 5; /* en sağda */
    }

    /* Hamburger simgesi biraz küçülsün */
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }

    /* Logo biraz daha sıkı dursun */
    .navbar-brand img {
        height: 30px !important;
    }

    /* Header genel sıkılığı */
    .navbar {
        min-height: 44px !important;
    }
}

/* ==== Modern Footer (Dijisigo Stilinde) ==== */
.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 0;
  text-align: center;
  padding-bottom: 0.8rem !important;   /* alt dolgu azaltıldı */
}

.footer .footer-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer .footer-column {
  flex: 1 1 20%;
  min-width: 160px;
  text-align: left;
}

.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-column a {
  display: block;
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.2s ease;
}

.footer .footer-column a:hover {
  color: #5c2cb8;
  text-decoration: underline;
}

.footer .social-icons {
  margin-top: 0.5rem;
  margin-bottom: 0 !important;        /* ikonlardan sonra boşluk olmasın */
}

.footer .social-icons a {
  color: #5c2cb8;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.2s ease;
}

.footer .social-icons a:hover {
  color: #301b75;
}

.footer-bottom {
  margin-top: 1rem;
  color: #555;
  font-size: 0.9rem;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .footer .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer .footer-column {
    text-align: center;
  }
}

/* ============================= */
/* FAQ SECTION ARKAPLAN */
/* ============================= */
/* Inline style'ı override et - body ile aynı gradient */
.faq-section,
#faq-block {
  background: transparent !important;
}

/* ============================= */
/* 🏠 ANA SAYFA (accordion-home) */
/* ============================= */
/* Accordion genel alan */
.accordion-home {
  max-width: 900px;   /* Genişliği sınırla */
  margin: 0 auto;     /* Ortaya hizala */
  text-align: left;   /* Soru ve cevap sola hizalı kalsın */
  padding: 1rem;      /* Kenarlardan biraz boşluk */
}
.accordion-home .accordion-item {
  background: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-home .accordion-button {
  background-color: transparent !important;
  color: #000 !important;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  transition: color 0.3s ease;
  border-radius: 10px;
}

.accordion-home .accordion-button:hover {
  color: #5c2cb8;
}

/* Bootstrap okunu kaldır */
.accordion-home .accordion-button::after {
  display: none !important;
}

/* + / - ikonu */
.accordion-home .icon-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 14px;
  flex-shrink: 0;
}
.accordion-home .icon-toggle::before,
.accordion-home .icon-toggle::after {
  content: "";
  position: absolute;
  background-color: #5c2cb8;
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.accordion-home .icon-toggle::before {
  top: 9px;
  left: 0;
  right: 0;
  height: 2px;
}
.accordion-home .icon-toggle::after {
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
}
.accordion-home .accordion-button:not(.collapsed) .icon-toggle::after {
  transform: scaleY(0);
}

/* Aktif durumda */
.accordion-home .accordion-button:not(.collapsed) {
  border: 2px solid #5c2cb8;
  margin-bottom: -2px;
  border-bottom: none !important; /* Soru-cevap arasındaki çizgiyi kaldır */
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px rgba(142, 68, 173, 0.3);
  background: transparent !important;
}

/* Cevap kısmı container'ı */
.accordion-home .accordion-collapse {
  border: 2px solid #5c2cb8;
  margin-top: -2px;
  border-top: none !important;
  border-radius: 0 0 10px 10px;
  overflow: hidden; /* Ekstra boşlukları kapat */
}

/* Cevap metni */
.accordion-home .accordion-body {
  background: transparent !important;
  padding: 1rem 1.25rem !important;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 !important; /* Ekstra margin'leri kaldır */
}


/* ============================== */
/* 📄 ALT SAYFALAR (accordion-page) */
/* ============================== */

/* Accordion genişliği */
.accordion-page {
  max-width: 1100px;
  margin: 0 auto;
}

.accordion-page .accordion-item {
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; /* Anasayfa ile aynı renk */
}
.accordion-page .accordion-item:last-child {
  border-bottom: none;
}

.accordion-page .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: normal;
  padding: 1.25rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000 !important;
  background: transparent !important;
  border-radius: 10px;
  box-shadow: none !important;
  border: none;
  transition: all 0.25s ease;
}

/* Mor çerçeve aktifken */
.accordion-page .accordion-button:not(.collapsed) {
  border: 2px solid #5c2cb8 !important;
  margin-bottom: -2px;
  border-bottom: none !important; /* Soru-cevap arasındaki çizgiyi kaldır */
  border-radius: 10px 10px 0 0 !important;
  box-shadow: 0 0 10px rgba(92, 44, 184, 0.3);
  color: #000 !important;
  background: transparent !important;
}

/* Cevap container'ı */
.accordion-page .accordion-collapse {
  border: 2px solid #5c2cb8 !important;
  margin-top: -2px;
  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  overflow: hidden; /* Ekstra boşlukları kapat */
}

/* Cevap metni */
.accordion-page .accordion-body {
  background: transparent !important;
  padding: 1.25rem 2rem !important;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 !important; /* Ekstra margin'leri kaldır */
}

/* Hover */
.accordion-page .accordion-button:hover {
  color: #5c2cb8;
}

/* + / - ikonları */
.accordion-page .faq-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-left: auto;
}
.accordion-page .faq-icon .line-vertical,
.accordion-page .faq-icon .line-horizontal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5c2cb8;
  transition: all 0.25s ease;
  border-radius: 1px;
}
.accordion-page .faq-icon .line-vertical {
  width: 2px;
  height: 20px;
}
.accordion-page .faq-icon .line-horizontal {
  width: 20px;
  height: 2px;
}
.accordion-page .accordion-button:not(.collapsed) .faq-icon .line-vertical {
  height: 0;
}
.accordion-page .accordion-button:hover .faq-icon .line-horizontal,
.accordion-page .accordion-button:hover .faq-icon .line-vertical {
  background-color: #5c2cb8;
}

/* Bootstrap okunu gizle */
.accordion-page .accordion-button::after {
  display: none !important;
}


/* === Profil Menüsü - Mobil Uyum === */
@media (max-width: 768px) {
  .dropdown-menu.profile {
    min-width: 200px !important;
    font-size: 0.9rem;
  }

  .dropdown-menu.profile .dropdown-item i {
    font-size: 1rem;
  }

  .dropdown-menu.profile .dropdown-item {
    padding: 0.4rem 0.8rem;
  }

  .dropdown-menu.profile li.p-3 {
    padding: 0.75rem !important;
  }

  .dropdown-menu.profile li.border-top,
  .dropdown-menu.profile li.border-bottom {
    font-size: 0.8rem;
  }

  .dropdown-menu.profile .form-switch {
    transform: scale(0.9);
  }
}

/* Sadece profil dropdown içindeki renkleri değiştir */
.dropdown-menu.profile i.text-primary {
  color: #6A1B9A !important; /* mor/magenta */
}

.dropdown-menu.profile a.text-danger,
.dropdown-menu.profile i.text-danger {
  color: #e74c3c !important; /* sıcak kırmızı */
}

/* ========================================== */
/* 📖 HAKKIMIZDA SAYFASI                     */
/* ========================================== */

/* ============================================
   SAYFA BAŞLIĞI (Hakkımızda başlığı)
   ============================================ */
.about-page-container h2,
.about-content-wrapper h2 {
  font-size: 2.5rem;           /* Büyük ve dikkat çekici başlık */
  font-weight: 700;            /* Kalın font ağırlığı */
  color: #2e1d47;              /* Koyu mor/lacivert renk */
  text-align: center;          /* Ortaya hizalı */
  margin-bottom: 2.5rem;       /* Altında geniş boşluk */
  position: relative;          /* Alt çizgi için */
  display: inline-block;
  width: 100%;
}

/* ============================================
   İÇERİK WRAPPER
   Admin panelinden eklenen içerik burada
   ============================================ */
.about-content-wrapper {
  max-width: 100%;             /* Tam genişlik kullan */
}

/* Bootstrap col-12 sınıfını temizle */
.about-content-wrapper .col-12 {
  background: transparent !important;  /* Arkaplan şeffaf */
  padding: 0 !important;               /* İç boşluk yok */
  border-radius: 0;                    /* Köşe yuvarlaklığı yok */
  box-shadow: none !important;         /* Gölge yok */
}

/* ============================================
   PARAGRAFLAR
   Şeffaf arkaplan, sayfa gradient'i görünsün
   ============================================ */
.about-content-wrapper > p {
  font-size: 1.08rem !important;       /* Okunabilir font boyutu */
  line-height: 1.9 !important;         /* Geniş satır aralığı */
  color: #2e2e2e !important;           /* Koyu gri yazı rengi */
  margin-bottom: 1.5rem;               /* Paragraflar arası boşluk */
  text-align: left !important;         /* Sola hizalı */
  background: transparent !important;  /* Arkaplan şeffaf - gradient görünür */
  padding: 0.5rem 0 !important;        /* Minimal padding */
}

/* ============================================
   STRONG ETİKETLERİ (Dijisigo.com vb.)
   Mor renkte vurgu
   ============================================ */
.about-content-wrapper strong {
  color: #5c2cb8 !important;           /* Dijisigo mor rengi */
  font-weight: 700 !important;         /* Kalın yazı */
}

/* ============================================
   ALT BAŞLIKLAR (h3 - Neden Dijisigo? vb.)
   Altında mor gradient çizgi var
   ============================================ */
.about-content-wrapper h3 {
  font-size: 2.2rem !important;        /* Büyük başlık */
  font-weight: 700 !important;         /* Kalın */
  color: #2e1d47 !important;           /* Koyu mor */
  margin: 3.5rem 0 2rem 0 !important;  /* Üstte ve altta geniş boşluk */
  text-align: center !important;       /* Ortaya hizalı */
  position: relative;                  /* Alt çizgi için */
}

/* Başlıkların altındaki mor çizgi */
.about-content-wrapper h3::after {
  content: "";                         /* Boş içerik */
  position: absolute;                  /* Başlığın altında konumla */
  bottom: -12px;                       /* 12px aşağıda */
  left: 50%;                           /* Yatayda ortala */
  transform: translateX(-50%);         /* Tam ortala */
  width: 60px;                         /* 60px genişlik */
  height: 4px;                         /* 4px yükseklik */
  background: linear-gradient(90deg, #6A1B9A, #5c2cb8);  /* Mor gradient */
  border-radius: 2px;                  /* Hafif yuvarlaklık */
}

/* ============================================
   KARTLAR LİSTESİ (ul)
   3 sütunlu grid düzeni - 5 kart için 3+2
   ============================================ */
.about-content-wrapper ul {
  list-style: none;                    /* Liste noktalarını kaldır */
  padding: 0;                          /* İç boşluk yok */
  margin: 2.5rem 0;                    /* Üst-alt boşluk */
  display: grid;                       /* CSS Grid kullan */
  grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun */
  gap: 1.5rem;                         /* Kartlar arası boşluk */
}

/* ============================================
   KART KONUMLAMA
   5 kart var: 3 üstte, 2 altta ortalı
   ============================================ */
/* 4. kartı sol sütuna yerleştir */
.about-content-wrapper li:nth-child(4) {
  grid-column: 1 / 2;                  /* 1. sütunda */
}

/* 5. kartı orta sütuna yerleştir (ortalı durması için) */
.about-content-wrapper li:nth-child(5) {
  grid-column: 2 / 3;                  /* 2. sütunda (ortada) */
}

/* ============================================
   GLASS-MORPHISM KARTLAR
   Modern cam efekti, beyaz arkaplan
   ============================================ */
.about-content-wrapper li {
  background: #fff;                          /* Beyaz arkaplan */
  backdrop-filter: blur(12px);               /* 12px bulanıklık (cam efekti) */
  -webkit-backdrop-filter: blur(12px);       /* Safari için */
  border-radius: 20px;                       /* Yuvarlatılmış köşeler */
  padding: 2rem 1.75rem;                     /* İç boşluk */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Hafif gölge */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth animasyon */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Beyaz kenarlık */
  position: relative;                        /* Gradient border için */
  overflow: hidden;                          /* Taşan içeriği gizle */
}

/* ============================================
   GRADIENT BORDER EFEKTİ
   Hover'da mor gradient kenarlık beliriyor
   ============================================ */
.about-content-wrapper li::before {
  content: "";                         /* Boş içerik */
  position: absolute;                  /* Kartın üzerinde konumla */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;                 /* Kartla aynı köşe */
  padding: 2px;                        /* Kenarlık kalınlığı */
  background: linear-gradient(135deg, transparent, transparent); /* Başlangıçta görünmez */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;         /* Sadece kenarlık görünsün */
  mask-composite: exclude;
  opacity: 0;                          /* Başlangıçta görünmez */
  transition: opacity 0.35s ease;      /* Yumuşak geçiş */
}

/* ============================================
   KART HOVER EFEKTİ
   Mouse üzerine geldiğinde yukarı kalkar
   ============================================ */
.about-content-wrapper li:hover {
  transform: translateY(-10px);                /* 10px yukarı kalk */
  box-shadow: 0 12px 32px rgba(92, 44, 184, 0.2); /* Daha belirgin gölge */
  border-color: rgba(92, 44, 184, 0.3);        /* Mor kenarlık */
  background: #fff;                            /* Beyaz kalır */
}

/* Hover'da gradient border görünür hale gelir */
.about-content-wrapper li:hover::before {
  background: linear-gradient(135deg, #6A1B9A, #5c2cb8, #3F51B5); /* Mor gradient */
  opacity: 1;                                   /* Görünür yap */
}

/* ============================================
   KART BAŞLIKLARI (strong)
   "Dijital Kolaylık:", "Çözüm Odaklı" vb.
   ============================================ */
.about-content-wrapper li strong {
  display: block !important;           /* Blok element yap */
  font-size: 1.25rem !important;       /* Büyük font */
  color: #2e1d47 !important;           /* Koyu mor */
  margin-bottom: 0.85rem !important;   /* Altında boşluk */
  padding-left: 42px;                  /* Sol tarafta ikon için boşluk */
  position: relative;                  /* İkon konumu için */
  line-height: 1.4;                    /* Satır yüksekliği */
}

/* ============================================
   MODERN İKON TASARIMI
   Mor gradient arka planlı ✓ ikonu
   ============================================ */
.about-content-wrapper li strong::before {
  content: "✓";                        /* Onay işareti */
  position: absolute;                  /* Sola sabitle */
  left: 0;                             /* En solda */
  top: 50%;                            /* Dikeyde ortala */
  transform: translateY(-50%);         /* Tam ortala */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;                         /* İkon kutu genişliği */
  height: 34px;                        /* İkon kutu yüksekliği */
  background: linear-gradient(135deg, #6A1B9A, #5c2cb8); /* Mor gradient */
  color: #fff;                         /* Beyaz ikon */
  border-radius: 10px;                 /* Yuvarlatılmış kare (modern) */
  font-weight: 900;                    /* Kalın ikon */
  font-size: 1rem;
  flex-shrink: 0;                      /* Küçülmesin */
  box-shadow: 0 4px 12px rgba(92, 44, 184, 0.25); /* Mor gölge */
}

/* Hover'da ikon büyür */
.about-content-wrapper li:hover strong::before {
  transform: translateY(-50%) scale(1.1);      /* %10 büyüt */
  box-shadow: 0 6px 16px rgba(92, 44, 184, 0.35); /* Daha belirgin gölge */
}

/* ============================================
   KART İÇERİK METNİ
   Açıklama paragrafları
   ============================================ */
.about-content-wrapper li {
  font-size: 1rem !important;          /* Normal font boyutu */
  line-height: 1.7 !important;         /* Rahat satır aralığı */
  color: #555 !important;              /* Orta gri renk */
}

/* ============================================
   RESPONSIVE TABLET (max-width: 1024px)
   2 sütunlu düzen, 5. kart tam genişlikte ortalı
   ============================================ */
@media (max-width: 1024px) {
  .about-content-wrapper ul {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    gap: 1.5rem;
  }

  /* 4. kart normal akışta */
  .about-content-wrapper li:nth-child(4) {
    grid-column: auto;
  }

  /* 5. kart tam genişlikte ve ortalı */
  .about-content-wrapper li:nth-child(5) {
    grid-column: 1 / -1;               /* Her iki sütunu kapla */
    max-width: 500px;                  /* Maksimum genişlik */
    margin: 0 auto;                    /* Ortala */
  }
}

/* ============================================
   RESPONSIVE TABLET (max-width: 768px)
   Tek sütun düzeni
   ============================================ */
@media (max-width: 768px) {
  .container h2 {
    font-size: 2rem;                   /* Başlık küçült */
  }

  .about-content-wrapper > p {
    font-size: 1rem !important;        /* Paragraf küçült */
    padding: 0.5rem 0 !important;
  }

  .about-content-wrapper h3 {
    font-size: 1.75rem !important;     /* Alt başlık küçült */
    margin: 2.5rem 0 1.5rem 0 !important;
  }

  .about-content-wrapper ul {
    grid-template-columns: 1fr;        /* Tek sütun */
    gap: 1.25rem;
  }

  /* 5. kart normal akışta */
  .about-content-wrapper li:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
  }

  .about-content-wrapper li {
    padding: 1.5rem;                   /* İç boşluk azalt */
  }
}

/* ============================================
   RESPONSIVE MOBİL (max-width: 576px)
   Daha küçük fontlar ve spacing
   ============================================ */
@media (max-width: 576px) {
  .container h2 {
    font-size: 1.75rem;                /* Başlık daha küçük */
  }

  .about-content-wrapper > p {
    font-size: 0.95rem !important;     /* Paragraf küçük */
    padding: 0.5rem 0 !important;
  }

  .about-content-wrapper h3 {
    font-size: 1.5rem !important;      /* Alt başlık küçük */
  }

  .about-content-wrapper li strong {
    font-size: 1.1rem !important;      /* Kart başlığı küçük */
    padding-left: 40px;                /* İkon için az boşluk */
  }

  /* İkon boyutlarını küçült */
  .about-content-wrapper li strong::before {
    width: 30px;                       /* Küçük ikon kutusu */
    height: 30px;
    font-size: 0.9rem;                 /* Küçük ikon */
  }
}
