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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #FFFFFF;
	color: #262929;
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 30px 20px;
}

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
	width: 100%
}

.logo-img {
	max-height: 50px;
	width: auto;
	display: block;
}

.title-container {
	padding-bottom: 5px;
}

h1, h2, h3, h4, h5, h6 {
	color: #111212;
	font-weight: 700;
	margin-top: 30px;
	margin-bottom: 15px;
	line-height: 1.2;
}

h1 { font-size: 35px; line-height: 35px; margin: 0; }
h2 { font-size: 21px; }
h3 { font-size: 17px; }
h4 { font-size: 15px; }

.h1-inline {
	line-height: 130%;
	margin: unset;
	margin-bottom: 20px;
}

p {
	margin-bottom: 20px;
}

.subtitle {
	font-size: 14px;
	color: #555;
	margin-top: -10px;
	margin-bottom: 30px;
}

a {
	color: #07818C;
	text-decoration: none;
	font-weight: 600;
}

a:hover {
	text-decoration: underline;
}

ul, ol {
	padding-left: 30px;
	margin-bottom: 20px;
}

li {
	margin-bottom: 10px;
	padding-left: 10px;
}

table {
	padding-bottom: 20px;
}

td {
	border: 1px solid #D4D6D6;
	padding: 10px;
	border-radius: 6px;
}

@media (max-width: 600px) {
	.container {
		padding: 20px 15px;
	}

	.logo-img {
		max-height: 40px;
	}

	h1 { font-size: 28px; }
	h2 { font-size: 21px; }
	h3 { font-size: 15px; }
	
	body {
		font-size: 15px;
	}

	.subtitle {
		font-size: 14px;
	}
}