/* Contact Page */
.contact-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  text-align: left;
}
.contact-header .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.back-link {
  color: #e8792f;
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 60px 20px;
  background-color: #f5f7fa;
}

.contact-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-logo {
  width: 90px;
  margin-bottom: 20px;
}

.contact-card h2 {
  color: #e8792f;
  margin-bottom: 15px;
}

.contact-card p {
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8792f;
}

.btn-submit {
  display: block;
  width: 100%;
  background-color: #e8792f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }
}
