/* privacy.html 스타일 */
/* index.html의 스타일 기반 */
body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: #f4f7f9;
	color: #333;
}

/* 레이아웃 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 헤더 */
.header {
	background-color: #007bff; /* 메인 색상 */
	color: white;
	padding: 15px 0;
	text-align: center;
}

.header h1 {
	margin: 0;
	font-size: 28px;
}

.header nav a {
	color: white;
	margin: 0 15px;
	text-decoration: none;
	font-weight: bold;
	transition: opacity 0.3s;
}

.header nav a:hover {
	opacity: 0.8;
}

.header nav .cta-button {
	padding: 8px 15px; margin-left: 20px;
}

.cta-button {
	display: inline-block;
	background-color: #28a745; /* 강조 색상 */
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	font-size: 18px;
	transition: background-color 0.3s, transform 0.2s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	background-color: #218838;
	transform: translateY(-2px);
}


/* 메인 콘텐츠 스타일 */
.main-content {
	padding: 40px 20px;
	background-color: white;
	min-height: 60vh;
}

/* 푸터 스타일 */
.footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
}

.footer a {
	color: #b0c4de;
	text-decoration: none;
	margin: 0 5px;
}


/* 정책 내용 스타일 추가 (가독성 향상) */
.policy-content-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 30px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	text-align: left; /* 정책 내용은 왼쪽 정렬 */
}

.policy-content-wrapper h2 {
	font-size: 28px;
	color: #007bff;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: center;
}

.policy-content-wrapper h3 {
	color: #333;
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 20px;
}

.policy-content-wrapper p {
	margin-bottom: 15px;
	padding-left: 10px;
}

.policy-content-wrapper ol, .policy-content-wrapper ul {
	padding-left: 30px;
	margin-bottom: 15px;
}

.policy-content-wrapper li {
	margin-bottom: 8px;
}