/* 연락처 섹션 스타일 수정 */
section#contact {
  background-color: var(--navy-dark) !important;
  color: white !important;
  background-image: url('../img/map-image.png') !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 150px; /* 푸터와의 간격 */
}

/* 배경 이미지 어둡게 처리 */
section#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.85);
  z-index: 1;
}

/* 모든 콘텐츠를 배경 위에 표시 */
section#contact .container,
section#contact .row,
section#contact .col-lg-12,
section#contact h2,
section#contact h3,
section#contact .contact-info {
  position: relative;
  z-index: 2;
}

/* 텍스트 색상 및 스타일 */
section#contact h2.section-heading {
  color: white !important;
  margin-bottom: 20px;
}

section#contact h3.section-subheading {
  color: var(--light-slate) !important;
  margin-bottom: 40px;
}

.contact-info {
  background-color: var(--navy-medium);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info h4 {
  color: rgba(10, 25, 47, 0.85) !important;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.contact-info p {
  color: rgba(10, 25, 47, 0.85) !important;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent);
}

.contact-info a {
  color: var(--light-slate) !important;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: rgba(10, 25, 47, 0.85) !important;
  text-decoration: underline;
}

/* 푸터 완전히 숨기기 */
footer {
  display: none !important;
}

/* 또는 푸터를 유지하면서 배경만 변경하는 방법 */
/*
footer {
  background-color: var(--navy-dark) !important;
  color: white !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .social-buttons,
footer .quicklinks {
  display: none !important;
}

footer .copyright {
  color: var(--slate) !important;
}
*/