#contact-section {
  color-scheme: light;
  background: #fff;
  color: #2c2c2c;
  padding: 50px;
}

#contact-section h2 {
  color: #2c2c2c;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.contact-card {
  max-width: 350px;
  margin: 0 auto;
  padding: 25px;
  border: 2px solid #2c2c2c;
  border-radius: 12px;
  background: #fff;
}

.contact-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #f2f2f2;
  color: #111;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #666;
}

.contact-card textarea {
  resize: vertical;
  height: 100px;
}

.contact-card button {
  width: 100%;
  padding: 12px;
  background: #2c2c2c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-card button:hover {
  background: #000;
}

.hidden {
  display: none;
}

#statusMsg {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}