/* Contact Page Styles */
.contact-page {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
}

.contact-hero {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.contact-container {
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-column {
  flex: 1;
}

.contact-column h2 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.contact-form-col label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

.contact-form-col textarea {
  min-height: 120px;
}

.required {
  color: #d32f2f;
}

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

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

.contact-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon img {
  border-radius: 50%;
  object-fit: cover;
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: #d32f2f;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .contact-column {
    width: 100%;
  }
  
  .contact-hero {
    padding: 60px 20px;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero .subhead {
    font-size: 1.1rem;
  }
}