  .pricing-section {
      padding-top: 80px;
      padding-bottom: 80px;
  }

  /* Toggle Switch */
  .toggle-switch {
      display: flex;
      background-color: #e9ecef;
      /* Açık gri arka plan */
      border-radius: 25px;
      padding: 3px;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .toggle-switch .btn {
      border: none;
      border-radius: 20px;
      padding: 8px 25px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .toggle-switch .btn.active-toggle {
      background-color: #28a745;
      /* Yeşil aktif renk */
      color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .toggle-switch .btn.btn-outline-primary {
      background-color: transparent;
      color: #6c757d;
      /* Pasif gri renk */
  }

  .toggle-switch #annually-toggle {
      position: relative;
  }

  .toggle-switch .toggle-discount {
      display: inline-block;
      position: absolute;
      top: -45px;
      left: 50px;
      width: 100px;
      text-align: center;
      font-size: 1.2rem;
      font-weight: 800;
      background-color: #ffc107;
      color: #212529;
      padding: 2px 10px;
      border-radius: 999px;
      line-height: 1.2;
      transform: rotate(-12deg);
      transform-origin: center;
      pointer-events: none;
  }

  /* Pricing Cards */
  .pricing-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease-in-out;
      background-color: #fff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      /* Tüm kartların eşit yükseklikte olmasını sağlar */
  }

  .pricing-card:hover {
      transform: translateY(-5px);
  }

  .pricing-card .icon-circle {
      width: 80px;
      /* İkon çemberi genişliği */
      height: 80px;
      /* İkon çemberi yüksekliği */
      background-color: #e6f7ed;
      /* Çok açık yeşil */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
  }

  .pricing-card .icon-circle img {
      width: 60px;
      /* İkonun kendi genişliği */
      height: 60px;
      /* İkonun kendi yüksekliği */
      /* Resimdeki ikon renklerine göre filtre ekleyebilirsiniz */
      /* filter: invert(39%) sepia(87%) saturate(464%) hue-rotate(94deg) brightness(98%) contrast(92%); */
  }

  .pricing-card .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #343a40;
      margin-bottom: 15px;
  }

  .pricing-card .price {
      font-size: 3rem;
      font-weight: 700;
      color: #28a745;
      /* Yeşil fiyat rengi */
      margin-bottom: 25px;
  }

  .pricing-card .price .period {
      font-size: 1rem;
      font-weight: 400;
      color: #6c757d;
  }

  .pricing-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
  }

  .pricing-card ul li {
      font-size: 1rem;
      color: #495057;
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
      /* Tik işareti için boşluk */
  }

  .pricing-card ul li::before {
      content: '✓';
      /* Tik işareti */
      color: #28a745;
      /* Yeşil tik işareti */
      font-weight: bold;
      position: absolute;
      left: 0;
  }

  .pricing-card .sign-up-btn {
      background-color: #28a745;
      /* Yeşil düğme */
      border-color: #28a745;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .pricing-card .sign-up-btn:hover {
      background-color: #218838;
      /* Koyu yeşil hover */
      border-color: #1e7e34;
  }

  /* İkonlar için düzenleme */
  /* Resimdeki ikonları doğrudan SVG veya FontAwesome gibi kütüphanelerden alıp <img> yerine <i> etiketi kullanmak daha esnek olabilir. */
  /* Şimdilik placeholder resimler kullanıldı. */
  .icon-circle img[alt="Basic Icon"] {
      /* İkonların renklerini filtre ile ayarlayabilirsiniz */
      filter: invert(39%) sepia(87%) saturate(464%) hue-rotate(94deg) brightness(98%) contrast(92%);
      /* Örnek yeşil tonu */
  }

  .icon-circle img[alt="Premium Icon"] {
      filter: invert(39%) sepia(87%) saturate(464%) hue-rotate(94deg) brightness(98%) contrast(92%);
  }

  .icon-circle img[alt="Business Icon"] {
      filter: invert(39%) sepia(87%) saturate(464%) hue-rotate(94deg) brightness(98%) contrast(92%);
  }