/* Contact page layout */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

.contact_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact_header {
  text-align: center;
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact_header h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact_header p {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin: 0;
}

.contact_content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact_info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info_card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.info_card:hover {
  transform: translateY(-5px);
}

.info_card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info_card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.info_card p {
  color: #34495e;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.info_card a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.info_card a:hover {
  text-decoration: underline;
}

.hours, .response {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-style: italic;
}

.services_list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.services_list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ecf0f1;
  color: #34495e;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.services_list li:last-child {
  border-bottom: none;
}

.services_list li strong {
  color: #2c3e50;
  font-weight: 600;
}

.services_list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
  font-size: 1.1rem;
}

.map_section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.map_section h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map_container {
  flex: 1;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.map_container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.map_info {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.map_info p {
  margin: 0.5rem 0;
  color: #34495e;
  line-height: 1.5;
}

.map_info strong {
  color: #2c3e50;
  font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 900px) {
  .contact_content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map_container {
    min-height: 350px;
  }
  
  .map_container iframe {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .contact_container {
    padding: 1rem;
  }
  
  .contact_header h1 {
    font-size: 2.5rem;
  }
  
  .contact_header p {
    font-size: 1.1rem;
  }
  
  .contact_header,
  .map_section {
    padding: 1.5rem;
  }
  
  .info_card {
    padding: 1.5rem;
  }
  
  .map_container {
    min-height: 300px;
  }
  
  .map_container iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .contact_header h1 {
    font-size: 2rem;
  }
  
  .contact_header p {
    font-size: 1rem;
  }
  
  .info_card .icon {
    font-size: 2.5rem;
  }
  
  .info_card h3 {
    font-size: 1.3rem;
  }
  
  .map_section h3 {
    font-size: 1.5rem;
  }
  
  .map_container {
    min-height: 250px;
  }
  
  .map_container iframe {
    min-height: 250px;
  }
}