.content {
  background: rgba(255, 255, 255, 0.98);
  color: #222;
  max-width: 950px;
  margin: 4rem auto;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.content h1 {
  color: #667eea;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.content p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  color: #4b5563;
}

.contact-wrapper {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.contact-form .hero-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.status-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  padding: 1.2rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.status-error {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  padding: 1.2rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
