.contact-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: Arial, sans-serif;
  color: #222;
}

.contact-page h1,
.contact-page h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.contact-form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 153, 0, 0.5);
  transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: #e68200;
  outline: none;
}


.contact-form-section {
  background: #fefefe;
  padding: 2rem 1rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.3);
}

.contact-form .btn.primary {
  background-color: #ff9900;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-form .btn.primary:hover {
  background-color: #e68200;
}


/* Responsive */
@media (max-width: 600px) {
  .contact-form {
    padding: 1rem;
  }
}


.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.alert.success {
  background: #e0f7e9;
  color: #2e7d32;
}
.alert.error {
  background: #fdecea;
  color: #c62828;
}
