/* Forms Resources page */
.fr-hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f4fa 100%);
  padding: 40px 0 0;
  position: relative;
}

.fr-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: end;
}

.fr-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
}

.fr-hero-intro {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 20px;
}

.fr-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fr-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 10px;
}

.fr-checklist i {
  color: #0b5ed7;
}

.fr-hero-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.fr-section {
  padding: 48px 0 40px;
}

.fr-section h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
}

.fr-help {
  background: #f3f4f6;
  padding: 48px 0;
  position: relative;
}

.fr-help-inner {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
}

.fr-help h2 {
  font-size: 22px;
  margin: 0 0 16px;
}

.fr-help-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.fr-help-tab {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.fr-help-tab.active {
  color: #0b5ed7;
  border-bottom-color: #0b5ed7;
}

.fr-help-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.fr-help-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.fr-help-form input,
.fr-help-form select {
  width: 100%;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
}

.fr-help-form .btn {
  height: 42px;
  padding: 0 24px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.fr-help-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .fr-hero-grid,
  .fr-help-inner {
    grid-template-columns: 1fr;
  }

  .fr-help-form {
    grid-template-columns: 1fr;
  }
}
