/* ===== HERO ===== */
.hero {
	position: relative;
	height: 70vh;
	min-height: 520px;
	padding-top: 70px; /* ³×ºñ ³ôÀÌ¸¸Å­ */


	background-image: url("../images/hero-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 24, 50, 0.6);
	display: flex;
	align-items: center;
}

.hero-inner {
	max-width: 560px;
	color: #ffffff;
}

.hero-kicker {
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.8;
	margin-bottom: 14px;
}

.hero-title {
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 18px;
}

.hero-desc {
	font-size: 1.05rem;
	opacity: 0.85;
	margin-bottom: 28px;
}

.hero-actions .btn {
	border-radius: 999px;
	padding: 10px 24px;
}

/* ===== SERVICES ===== */
.section-services {
	padding: 80px 0;
}

.nav-main {
	background: #4b557d;
	height: 70px;
}

main {
	margin-top: 0;
}

.navbar-logo {
	height: 36px;
	width: auto;
}


@media (min-width: 992px) {
	.navbar-logo {
		height: 44px;
	}
}

.navbar-logo {
	height: 36px;
	width: auto;
	max-height: 50px; /* Ãß°¡: ÃÖ´ë ³ôÀÌ¸¦ 50px·Î Á¦ÇÑ */
}


@media (min-width: 992px) {
	.navbar-logo {
		height: 44px;
		max-height: 50px; /* Ãß°¡: ¹ÝÀÀÇü Á¶°Ç¿¡¼­µµ µ¿ÀÏÇÏ°Ô Á¦ÇÑ */
	}
}

.footer {
	font-size: 13px;
	line-height: 1.4;
}

	.footer .container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.footer .row {
		margin-bottom: 5px;
	}

	.footer small {
		font-size: 12px;
	}

.card-style {
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	padding: 15px;
	transition: transform 0.2s ease-in-out;
	text-align: center;
}

	.card-style:hover {
		transform: translateY(-5px);
	}

	.card-style img {
		max-width: 80%;
		height: auto;
		border-radius: 0;
		padding: 5px;
		background-color: #fff;
		border: 1px solid #ddd;
	}

/* ¸ð¹ÙÀÏ ¾Û Ä«µå Àü¿ë ÇÁ·¹ÀÓ */
.img-frame {
	border-radius: 12px;
	overflow: hidden;
	background-color: #fff;
	padding: 6px;
	border: 1px solid #ddd;
}

	.img-frame img {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 0;
		background: transparent;
	}

.contact-image-box {
	height: 100%;
	display: flex;
	align-items: center; /* ÀÌ¹ÌÁö ¼¼·Î Áß¾Ó */
	justify-content: center; /* ÀÌ¹ÌÁö °¡·Î Áß¾Ó */
}

	.contact-image-box img {
		max-height: 100%;
		max-width: 100%;
	}