* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary-color: #002c5f;
	--secondary-color: #007bff;
	--background-color: #f8f9fa;
	--text-color: #333;
	--text-light: #555;
	--spacing-unit: clamp(1rem, 2vw, 2rem);
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.4;
	background-color: var(--background-color);
	color: var(--text-color);
	font-size: clamp(14px, 1vw + 12px, 16px);
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 1rem;
}

header {
	background-color: var(--primary-color);
	color: white;
	padding: 2.5rem 1rem 2.5rem 1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	font-weight: bold;
}

header p {
	font-size: clamp(1rem, 2vw, 1.5rem);
}

.logo-header {
	display: block;
	margin: 0 auto 1.2rem auto;
	max-width: 120px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0, 44, 95, 0.08);
	background: white;
}

.container {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.5rem;
}

.hero {
	text-align: center;
	margin: 2rem auto;
	max-width: 800px;
}

.hero h1 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1rem;
	font-weight: bold;
}

.hero p {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	color: var(--text-light);
	margin-bottom: 1.2rem;
	line-height: 1.5;
}

.info {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: var(--secondary-color);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: bold;
	margin-top: 2rem;
	transition: transform 0.2s, background-color 0.2s;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:hover {
	background-color: #0056b3;
	transform: translateY(-3px);
}

.transition-note {
	text-align: center;
	margin: 3rem auto;
	max-width: min(700px, 95%);
	padding: 1.5rem 0; 
	background-color: rgba(0, 123, 255, 0.1);
	border-radius: 8px;
	color: #666;
	display: flex;
	justify-content: center;
	align-items: center;
}

.transition-note p {
	font-size: 13px;
	line-height: 1.3;
	max-width: 650px;
	margin: 0;
}

footer {
	background-color: #eee;
	text-align: center;
	padding: 0.5rem;
	font-size: 0.7rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}

footer p {
	margin-bottom: 0.5rem;
}

footer a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.2s;
}

footer a:hover {
	color: #0056b3;
}

.privacy {
	font-size: 0.8rem;
	margin-top: 0.5rem; 
	text-align: center;
	color: var(--text-light);
}

.privacy a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.2s;
}

.privacy a:hover {
	color: #0056b3;
}

@media (max-width: 768px) {
	:root {
		--spacing-unit: 1rem;
	}

	.container {
		padding: var(--spacing-unit) 1rem;
	}

	.hero {
		margin-bottom: var(--spacing-unit);
	}

	.transition-note {
		margin: var(--spacing-unit) auto;
		padding: 0.8rem;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 16px;
	}

	.button {
		padding: 0.6rem 1.2rem;
		width: 90%;
		max-width: 300px;
		text-align: center;
	}

	.info {
		text-align: left;
		padding: 0 1rem;
	}
}

.privacy-policy {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.privacy-policy h1,
.privacy-policy h2 {
	color: var(--primary-color);
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
}

.privacy-policy h2:first-of-type {
	margin-top: 3rem;
}

.privacy-policy h3 {
	margin-top: 1.8rem;
	margin-bottom: 1rem;
}

.privacy-policy h4 {
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
}

.privacy-policy p {
	margin-bottom: 1rem;
}

.privacy-policy ul {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
	text-align: left;
}

.privacy-policy li {
	margin-bottom: 0.5rem;
	text-align: left;
}

.privacy-policy .container {
	background: white;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-policy .update-date {
	color: #666;
	font-style: italic;
}

.privacy-policy .contact-info {
	background-color: var(--background-color);
	padding: 0.1rem 1rem;
	border-radius: 4px;
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 150px; 
	height: 170px; 
}
