.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-form-section {
  flex: 2;
  min-width: 300px;
}

.contact-info-section {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: #000000;
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  background-color: #5f6974a4;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #4e3b3b;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}


.form-group select {
  background-color: rgba(138, 94, 94, 0.562);
}

.submit-button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0052a3;
}

.contact-info {
  background-color: #07050571;
  padding: 2rem;
  border-radius: 8px;
}

.contact-method {
  margin-bottom: 1.5rem;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-method h3 svg {
  margin-right: 0.5rem;
}

.business-hours {
  margin-top: 2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table tr {
  border-bottom: 1px solid #ddd;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.5rem 0;
}

.hours-table td:last-child {
  text-align: right;
}

.map-section {
  margin-top: 3rem;
}

.map-container {
  height: 400px;
  background-color: #383535b7;
  border-radius: 8px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-section {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

