*,
*::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;
}

/* ===== CONTACT FORM ===== */
.contact-form {
	max-width: 640px;
	border-radius: 12px;
	padding: 10px 0;
	margin-bottom: 5px;
}
.form-group {
	margin-bottom: 22px;
}
.form-group:last-of-type {
	margin-bottom: 28px;
}
.contact-form label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}
.label-optional {
	font-weight: 400;
	color: #9ca3af;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #1f2937;
	background: #f9fafb;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9ca3af;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #1f3557;
	box-shadow: 0 0 0 3px rgba(31, 53, 87, 0.1);
	background: #fff;
}
.contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}
.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}
.form-submit {
	display: inline-block;
	padding: 14px 36px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	background: #1f3557;
	border: none;
    margin-bottom: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.15s;
}
.form-submit:hover {
	background: #2a4570;
}
.form-submit:active {
	transform: scale(0.98);
}
.form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.form-alert {
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 20px;
}
.form-alert--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}
.form-alert--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.form-disclaimer {
	color: #9ca3af;
	font-size: 16px;
    line-height: 1.15;
}

/* ===== 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;
	}
	.contact-form {
		padding: 10px 2px;
	}
	.site-footer ul {
		display: block;
	}
	.site-footer li {
		margin-bottom: 12px;
	}
}
