/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.contact-hero .subheading {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-form-container, 
.contact-info-container {
  flex: 1;
}

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

.contact-form h2,
.contact-info-container h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #222;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

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

.btn-submit {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

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

.info-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
  display: flex;
  align-items: center;
}

.info-card p {
  color: #555;
  line-height: 1.6;
}

.info-card a {
  color: #0071e3;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Icons (using pseudo-elements for simplicity) */
.icon-location::before {
  content: "📍";
  margin-right: 10px;
}

.icon-phone::before {
  content: "📞";
  margin-right: 10px;
}

.icon-email::before {
  content: "✉️";
  margin-right: 10px;
}

.icon-hours::before {
  content: "🕒";
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-container,
  .contact-info-container {
    width: 100%;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero .subheading {
    font-size: 1rem;
  }
}