.kur-erteleme-page {
  background: #f7f9fb;
  color: #172033;
  font-family: Inter, "Open Sans", Arial, sans-serif;
  margin: 0;
}

.kur-erteleme-page * {
  box-sizing: border-box;
}

.deferral-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.deferral-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  padding: 72px 0 42px;
}

.deferral-hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
}

.deferral-copy {
  max-width: 680px;
}

.deferral-eyebrow {
  align-items: center;
  background: #fff0d9;
  border: 1px solid #f6c46f;
  border-radius: 999px;
  color: #8a5200;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 14px;
}

.deferral-copy h1 {
  color: #172033;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 22px 0 20px;
}

.deferral-copy p {
  color: #465264;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.deferral-note {
  background: #edf8f5;
  border: 1px solid #b9e0d6;
  border-radius: 8px;
  color: #245d51;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 24px;
  padding: 16px 18px;
}

.deferral-visual {
  margin: 0;
  position: relative;
}

.deferral-visual img {
  aspect-ratio: 1.24 / 1;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.14);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.deferral-form-section {
  padding: 42px 0 88px;
}

.deferral-form-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
}

.deferral-info {
  background: #172033;
  border-radius: 8px;
  color: #ffffff;
  padding: 30px;
}

.deferral-info h2 {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 12px;
}

.deferral-info p {
  color: #dce5f2;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.deferral-info a {
  color: #ffd37c;
  font-weight: 800;
  text-decoration: none;
}

.deferral-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.08);
  padding: 30px;
}

.course-deferral-form {
  display: grid;
  gap: 18px;
}

.course-deferral-form label {
  color: #172033;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.course-deferral-form input,
.course-deferral-form select {
  appearance: none;
  background: #f8fafc;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  color: #172033;
  font: inherit;
  font-size: 16px;
  min-height: 52px;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.course-deferral-form input:focus,
.course-deferral-form select:focus {
  background: #ffffff;
  border-color: #e83c66;
  box-shadow: 0 0 0 4px rgba(232, 60, 102, 0.14);
}

.deferral-phone-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 112px 1fr;
}

.deferral-consent {
  align-items: start;
  background: #fff8eb;
  border: 1px solid #f2d6a7;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px 1fr;
  padding: 16px;
}

.deferral-consent input {
  accent-color: #e83c66;
  border-radius: 4px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  width: 20px;
}

.deferral-consent span {
  color: #4f3d1f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.course-deferral-form button {
  align-items: center;
  background: #e83c66;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.course-deferral-form button:hover {
  background: #c72d54;
  transform: translateY(-1px);
}

.course-deferral-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.course-deferral-form .form-feedback {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  padding: 12px 14px;
}

.course-deferral-form .form-feedback.is-success {
  background: #e8f8ee;
  color: #176337;
}

.course-deferral-form .form-feedback.is-error {
  background: #ffe8ee;
  color: #9f193f;
}

@media (max-width: 900px) {
  .deferral-hero {
    padding-top: 46px;
  }

  .deferral-hero-grid,
  .deferral-form-grid {
    grid-template-columns: 1fr;
  }

  .deferral-visual {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .deferral-container {
    padding: 0 18px;
  }

  .deferral-copy h1 {
    font-size: 38px;
  }

  .deferral-copy p {
    font-size: 16px;
  }

  .deferral-form-card,
  .deferral-info {
    padding: 22px;
  }

  .deferral-phone-row {
    grid-template-columns: 1fr;
  }
}
