#contact-section {
  padding: 40px 20px;
  text-align: center;
}

#contact-section h2 {
  color: #00bcd4;
  margin-bottom: 10px;
}

#contact-section .intro {
  color: #000;
  max-width: 600px;
  margin: auto;
}

/* Contact Card */
.contact-card {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #000;
}

/* Form Inputs */
.form-group {
  text-align: left;
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #00bcd4;
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 8px;
}

button:hover {
  background: #0097a7;
}

#contact-success {
  display: none;
  color: green;
  margin-top: 15px;
}

/* Direct Email */
.direct-email {
  color: #000;
  margin-top: 20px;
}

.direct-email a {
  color: #00bcd4;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    margin: 20px;
    padding: 15px;
  }
}
