/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 12 2026 | 06:36:23 */
/* 버튼 */
.brochure-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0066ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.brochure-btn:hover {
  background: #0052cc;
}

/* 팝업 배경 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

/* 팝업 박스 */
.popup-content {
  background: #fff;
  width: 100%;
  max-width: 460px;
  padding: 36px;
  border-radius: 12px;
  position: relative;
}

/* 닫기 버튼 */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* 텍스트 */
.popup-content h2 {
  margin-top: 0;
  text-align: center;
}

.popup-desc {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}

/* 폼 */
.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0066ff;
}

/* 제출 버튼 */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  background: #0052cc;
}
