/* Contact Page Styles */
.contact-page {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page h1 {
  font-size: 2.5rem;
  color: #2a4365;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-intro {
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-info {
    width: 55%;
  }
  
  .business-hours {
    width: 40%;
  }
}

.contact-info {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2, .business-hours h2 {
  font-size: 1.8rem;
  color: #2a4365;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: #2b6cb0;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.contact-method h3 {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.contact-method p, .contact-method address {
  color: #718096;
  line-height: 1.6;
  font-style: normal;
}

.contact-method a {
  color: #2b6cb0;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: #1e4e8c;
  text-decoration: underline;
}

.social-links {
  margin-top: 2rem;
}

.social-links h3 {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ebf8ff;
  color: #3182ce;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #3182ce;
  color: white;
  transform: translateY(-2px);
}

.business-hours {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.business-hours li span {
  font-weight: 500;
  color: #2a4365;
}

.holiday-notice {
  font-style: italic;
  color: #718096;
  margin-top: 1rem;
}