@font-face {
    font-family: 'Vitro_core';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/Vitro_core.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 폼 요소 크기 축소 */
.contact {
	padding: 15px 12px !important;
}

.contact .textbox {
	margin-bottom: 6px !important;
	gap: 5px !important;
}

.contact .textbox input {
	height: 42px !important;
	padding: 8px 12px !important;
	font-size: 15px !important;
}

.contact .textbox div {
	font-size: 15px !important;
}

.contact > form > div {
	margin-top: 8px !important;
	margin-bottom: 0 !important;
}

.contact > form > div > div:first-child {
	margin-bottom: 4px !important;
	margin-top: 0 !important;
}

.period_btn {
	padding: 10px 15px !important;
	font-size: 14px !important;
	height: 40px !important;
}

.contact #submitBtn {
	font-size: 24px !important;
	padding: 12px 0 !important;
	height: auto !important;
}

.contact_bg {
	padding: 15px 12px !important;
	max-width: 1080px !important;
	margin: 0 auto !important;
}

.con > div:first-child {
	font-size: 32px !important;
	margin-bottom: 10px !important;
}

.textbox02 {
	font-size: 13px !important;
}

.privacy_box {
	margin-top: 8px !important;
	margin-bottom: 0 !important;
}

.contact > form > div:last-child {
	padding-top: 8px !important;
	margin-top: 0 !important;
}

/* Sticky form styles */
.contact_bg.sticky-form {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
	animation: slideUp 0.3s ease-out;
	max-height: 70vh;
	overflow-y: auto;
}

.contact_bg.sticky-form .contact {
	padding: 12px 10px !important;
	max-width: 100%;
}

.contact_bg.sticky-form .textbox,
.contact_bg.sticky-form .textbox input {
	margin-bottom: 6px !important;
}

.contact_bg.sticky-form .textbox input {
	height: 36px !important;
	font-size: 14px !important;
}

.contact_bg.sticky-form .period_btn {
	padding: 8px 12px !important;
	font-size: 13px !important;
	height: 36px !important;
}

.contact_bg.sticky-form #submitBtn {
	font-size: 20px !important;
	padding: 10px 0 !important;
}

/* 닫기 버튼 */
.sticky-close-btn {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	background: #003FA9;
	color: white;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	z-index: 1001;
	transition: background 0.3s;
}

.sticky-close-btn:hover {
	background: #002a73;
}

.contact_bg.sticky-form .sticky-close-btn {
	display: block;
}

.contact_bg.sticky-hidden {
	display: none !important;
}

/* 다시 열기 버튼 */
.sticky-reopen-btn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #003FA9;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: all 0.3s;
}

.sticky-reopen-btn:hover {
	background: #002a73;
	transform: scale(1.05);
}

.sticky-reopen-btn.show {
	display: block;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.contact_bg.sticky-form {
		max-height: 80vh;
	}
	
	.contact_bg.sticky-form .contact {
		padding: 10px 8px !important;
	}
	
	.contact_bg.sticky-form #submitBtn {
		font-size: 18px !important;
	}
	
	.con > div:first-child {
		font-size: 28px !important;
	}
	
	.contact #submitBtn {
		font-size: 20px !important;
	}
}