/* contact.html에서 분리된 고객센터 페이지 전용 스타일 */

/* 히어로 섹션 */
.page-hero {
  margin-top: 86px;
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('../images/banner/ban05.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero h2 {
  color: white;
  font-size: 48px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 브레드크럼 */
.breadcrumb {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 40px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #5B7FDB;
}

/* 메인 컨텐츠 */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
}

/* 메인 영역 하단 여백 제거 */
#main-area {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 하단 질문 영역 숨기기 */
.question {
  display: none !important;
}

.contact-content h1 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #222;
  font-weight: 600;
}

/* 문의 메시지 박스 */
.inquiry-box {
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 60px;
}

.inquiry-box h2 {
  font-size: 32px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.inquiry-box p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

/* 이메일 정보 박스 */
.email-box {
  background: white;
  border: 2px solid #5B7FDB;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.email-box p {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.email-box a {
  color: #5B7FDB;
  text-decoration: none;
  font-weight: 600;
}

.email-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
    margin-top: 70px;
  }

  .page-hero h2 {
    font-size: 36px;
  }

  .contact-content {
    padding: 40px 20px 40px;
  }

  .contact-content h1 {
    font-size: 32px;
  }

  .inquiry-box {
    padding: 40px 20px;
  }

  .inquiry-box h2 {
    font-size: 24px;
  }

  .inquiry-box p {
    font-size: 16px;
  }

  .email-box {
    padding: 30px 20px;
  }

  .email-box p {
    font-size: 16px;
  }
}
