/* ============================================
   SIGORTABIN - Bilgi Onay (Step 4) sayfa stilleri
   ============================================ */

.bilgileri-onayla-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 16px;
}

.bilgileri-onayla-header {
  text-align: center;
  margin-bottom: 32px;
}

.bilgileri-onayla-header h5 {
  font-size: 22px;
  font-weight: 600;
  color: #002169;
  margin: 0 0 8px;
}

.bilgileri-onayla-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 2 kart yan yana grid */
.bilgileri-onayla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.bilgi-karti {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #f0e5e5;
  box-shadow: 0 1px 3px rgba(0, 33, 105, 0.04);
}

.bilgi-karti h6 {
  font-size: 17px;
  font-weight: 600;
  color: #002169;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0e5e5;
}

.bilgi-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bilgi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex-wrap: wrap;
}

.bilgi-label {
  color: #666;
  font-weight: 400;
}

.bilgi-value {
  color: #002169;
  font-weight: 500;
  text-align: right;
}

/* Bilgilendirme Toggle */
.bilgilendirme-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0e5e5;
  margin-bottom: 24px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-switch .slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .slider {
  background: #ff4438;
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
}

.toggle-text {
  flex: 1;
  line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
  .bilgileri-onayla-grid {
    grid-template-columns: 1fr;
  }

  .bilgilendirme-toggle {
    flex-direction: row;
    padding: 16px 20px;
  }

  .bilgi-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bilgi-value {
    text-align: left;
  }
}
