main {
  margin-top: 110px;
  margin-bottom: 60px;
}

.careers-card {
  max-width: 950px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 28px;
}

.careers-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 760px;
  margin: auto;
  color: #5f6368;
  font-size: 1.05rem;
  line-height: 1.7;
}

.form-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2b2b2b;
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(53,164,156,0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.upload-help {
  margin-top: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.submit-btn {
  padding: 15px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 768px) {

  .careers-card {
    padding: 1.5rem;
  }

  .careers-title {
    font-size: 2rem;
  }

}