.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: #fff;
  padding: 4rem 1rem;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
}

.contact-subtitle {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #444;
}

.contact-info {
  width: 100%;
  margin-bottom: 2.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.contact-info h2 {
  margin-bottom: 1.2rem;
  color: #222;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.contact-form {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #222;
}

.required {
  color: #e62b1e;
  font-size: 0.95em;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background: #f5f5f5;
  margin-top: 0.1rem;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 180px;
  padding: 1rem 0;
  background-color: #e62b1e;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #b71c0c;
}

@media (max-width: 700px) {
  .contact-container {
    padding: 2rem 0.5rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .contact-info {
    padding: 1rem 0.5rem;
  }
} 