.contact-section {
  margin-top: 5rem;
  background: #EEEEEE;
}

h1, h3 {
  text-align: center;
  font-weight: 800;
}

p {
  text-align: center;
  max-width: 700px;
  margin: 10px auto;
  color: #333;
}

/* === Contact Container === */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  font-size: 2.2rem;
  color: #000;
}

.contact-container p {
  margin-bottom: 40px;
}

/* === Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

label span {
  color: #e63946;
}

input, textarea {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1.5px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #000;
}

/* === Button === */
.btn-submit {
  background: #000;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #FFD700;
  color: #000;
}

/* === Responsive === */
@media (max-width: 600px) {
  .contact-container {
    padding: 30px 20px;
  }

  .btn-submit {
    font-size: 1rem;
  }
}