* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Titillium Web', sans-serif;
	background-color: var(--main-bgcolor-light);
	color: var(--main-color-text-first);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#legalContainer {
	max-width: 820px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

#legalHeader {
	padding: 28px 0 20px;
	border-bottom: 1px solid var(--main-color-border-first);
	margin-bottom: 36px;
}

#legalLogoLink {
	display: inline-block;
}

#legalLogo {
	height: 72px;
	display: block;
}

#legalContent {
	flex: 1;
}

#legalContent h1 {
	font-size: 28px;
	font-weight: 700;
	color: var(--main-color-text-first);
	margin-bottom: 32px;
}

#legalContent section {
	margin-bottom: 32px;
}

#legalContent h2 {
	font-size: 17px;
	font-weight: 600;
	color: var(--main-color-first);
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--main-color-first);
	display: inline-block;
}

#legalContent p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--main-color-text-second);
	margin-bottom: 10px;
	text-align: justify;
}

#legalContent a {
	color: var(--main-color-link-first);
	text-decoration: underline;
	text-underline-offset: 3px;
}

#legalContent a:hover {
	color: var(--main-color-first);
}

#legalFooter {
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--main-color-border-first);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--main-color-text-second);
	flex-wrap: wrap;
	gap: 10px;
}

#legalFooter a {
	color: var(--main-color-link-first);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}

#legalFooter a:hover {
	color: var(--main-color-first);
}

@media (max-width: 600px) {
	#legalLogo {
		height: 56px;
	}

	#legalContent h1 {
		font-size: 22px;
	}

	#legalFooter {
		flex-direction: column;
		align-items: flex-start;
	}
}
