*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	color: #212121;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* ========== UTILITIES ========== */
.block {
	display: block;
}
.flex {
    display: flex;
}
.justify-center {
  justify-content: center;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mt-4 {
	margin-top: 4px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mx-auto {
	margin-inline: auto;
}
.max-w-\[900px\] {
	max-width: 900px;
}

/* ========== RESPONSIVE IMAGES ========== */
.header-logo img {
	width: 100%;
	height: auto;
	max-width: 604.8px;
}

/* ========== HEADER BAR ========== */
.header-bar {
	background-color: #1f3557;
	padding: 4px 0px;
}
.header-bar .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
}
.header-logo {
	line-height: 1;
	max-width: 420px;
	position: relative;
	top: 2px;
	width: 100%;
}
.header-social-proof {
	line-height: 1;
	max-width: 750px;
}

/* ===== SECTION 1: Content ===== */
.section-1 {
	background-color: #f6f4ef;
    color: #4b5563;
	padding: 50px 0 80px;
}
.section-1 a { color: #1f3557; }
.section-1 h1 { margin-bottom: 30px; }
.section-1 h2 { margin-bottom: 10px; }
.section-1 h3 { margin-bottom: 5px; }
.section-1 hr {
    border-bottom: 0;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    margin: 30px 0;
}
.section-1 p,
.section-1 li {
    margin-bottom: 15px;
}
.section-1 .row {
	max-width: 1080px;
	margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #f6f4ef;
	padding: 64px 0;
	border-top: 1px dotted #666;
}
.site-footer .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}
.site-footer p,
.site-footer a {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #999;
    text-decoration: none;
}

@media (min-width: 768px) {
	.md\:px-5 {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
    .header-bar .container {
        flex-direction: column;
		gap: 10px;
		min-height: auto;
		padding: 3px 20px;
	}
    .header-social-proof {
        display: none;
    }
}
@media (max-width: 480px) {
    section {
        padding-inline: 15px !important;
        padding-block: 18px !important;
    }
    .site-footer ul {
        display: block;
    }
    .site-footer li {
        margin-bottom: 12px;
    }
}
