/* contact.css */

.contact-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container h1 {
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.contact-box {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.contact-box a {
  color: #007bff;
  text-decoration: none;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 15px 25px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.alert {
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.alert.success {
  background-color: #e6f9ec;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert.error {
  background-color: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
