.contact-card {
  background-color: var(--white);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(46, 134, 171, 0.15);
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Pretendard', sans-serif;
  border: 1px solid var(--gray-200);
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 3px solid var(--primary-blue);
  padding-bottom: 12px;
}

.contact-info p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--gray-700);
}

.contact-info strong {
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-info a {
  color: var(--secondary-teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.contact-map {
  margin-top: 20px;
  text-align: center;
}

.map-img {
  aspect-ratio: 640/360;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 4px 8px rgba(46, 134, 171, 0.2);
  transition: transform 0.2s ease;
}

.map-img:hover {
  transform: scale(1.02);
}
