body {
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 16px; /* Base font size */
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem; /* Converted from 20px */
	background-color: white;
	box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1); /* Converted shadow */
}
header h1 {
	margin: 0;
	font-size: 1.5rem; /* Converted from 24px */
	color: #007B5E;
	display: flex;
	align-items: center;
	gap: 0.625rem; /* Converted from 10px */
}
header img.logo {
	height: 2.5rem; /* Converted from 40px */
	width: auto;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.25rem;
}
nav ul li {
	font-size: 1rem;
}
nav ul li a {
	text-decoration: none;
	color: black;
}
nav ul li a:hover,
nav ul li a:focus {
	text-decoration: underline;
}
main {
	text-align: center;
	background-color: #007B5E;
	color: white;
	padding: 3.125rem 1.25rem; /* Converted from 50px 20px */
}
main h1 {
	font-size: 2.25rem; /* Converted from 36px */
	margin: 1.25rem 0; /* Converted from 20px */
}
main p {
	font-size: 1.125rem; /* Converted from 18px */
	margin: 1.25rem 0;
}
.cta-button {
	display: inline-block;
	margin-top: 1.25rem;
	padding: 0.625rem 1.25rem; /* Converted from 10px 20px */
	font-size: 1rem;
	color: #007B5E;
	background-color: white;
	border: 0.125rem solid white; /* Converted from 2px */
	border-radius: 0.3125rem; /* Converted from 5px */
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
}
.cta-button:hover {
	background-color: #005D46;
	color: white;
}
.services-section {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	padding: 3.125rem 1.25rem;
	background-color: #005D46;
}
.service-box {
	flex: 1;
	max-width: 100%; /* Set to 100% for responsiveness */
	background-color: #007B5E;
	color: white;
	padding: 1.25rem;
	border-radius: 0.3125rem;
	text-align: center;
}
.service-box a {
	color: white;
	text-decoration: none;
}
.service-box a:hover {
	text-decoration: underline;
}
.service-box h3 {
	font-size: 1.125rem;
	margin-bottom: 0.625rem;
}
.service-box p {
	font-size: 0.875rem;
}
.service-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.service-item {
	margin-bottom: 0.75rem;
}
.service-item h3 {
	font-size: 1.6rem;
}
.service-item p {
	font-size: 1rem;
}
.discover-section {
	background-color: white;
	color: black;
	text-align: center;
	padding: 3.125rem 1.25rem; /* Converted from 50px 20px */
}
.discover-section h2 {
	font-size: 2rem; /* Converted from 32px */
	margin-bottom: 0.625rem; /* Converted from 10px */
}
.discover-section p {
	font-size: 1.125rem; /* Converted from 18px */
	margin-bottom: 1.25rem; /* Converted from 20px */
}
.discover-button {
	padding: 0.625rem 1.25rem; /* Converted from 10px 20px */
	font-size: 1rem;
	color: white;
	background-color: #007B5E;
	border: none;
	border-radius: 0.3125rem; /* Converted from 5px */
	text-decoration: none;
	cursor: pointer;
}
.discover-button:hover {
	background-color: #005D46;
}
.policy-section {
	background-color: #FFFFFF;
	text-align: left;
	color: #000000;
	padding: 3.125rem 1.25rem; /* Converted from 50px 20px */
}
.policy-section h1 {
	font-size: 1.75rem;
	margin-bottom: 0.625rem;
}
.policy-section h2 {
	font-size: 1.75rem;
	margin-bottom: 0.625rem;
}
.policy-section p {
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
}
.policy-section li {
	font-size: 0.875rem;
}
.quote-info-section {
	background-color: #FFFFFF;
	text-align: left;
	color: #000000;
	padding: 3.125rem 1.25rem;
}
.quote-info-section h1 {
	font-size: 1.75rem;
	margin-bottom: 0.625rem;
}
.quote-info-section h2 {
	font-size: 1rem;
	margin-bottom: 0.625rem;
}
.quote-info-section p {
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
}

.checklistform {
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
	padding: 1rem;
	background-color: #f5f5f5;
	border-radius: 10px;
}
.checklistform p {
	color: #333;
}
.checklistform h2 {
	color: #333;
}
.checklistform ul {
	text-align: left;
}
.checklistform li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}
input, select {
	padding: 0.75rem;
	margin-right: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}
textarea {
	width: 90%;
	padding: 0.25rem;
	margin: 0.3rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: #007B5E;
}
label {
	font-family: Arial, sans-serif;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	display: block;
	color: #333;
}
footer {
	background-color: #007B5E;
	color: white;
	padding: 1.25rem 3.125rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer div {
	margin-bottom: 0.625rem;
}
footer h4 {
	margin-bottom: 0.625rem;
}
footer a {
	color: white;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}
footer .social-icons {
	display: flex;
	gap: 0.625rem;
}
footer .social-icons a img {
	width: 2rem;
	height: 2rem;
}
footer .copyright {
	text-align: center;
	width: 100%;
	margin-top: 1.25rem;
	font-size: 0.875rem;
}
input:invalid {
	outline: red solid 2px;
}
@media (max-width: 768px) {
	header {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem;
	}
	nav ul {
		flex-direction: column;
		gap: 0.75rem;
	}
	nav ul li {
		font-size: 0.9rem;
	}
	.discover-section, .policy-section, .quote-info-section {
		padding: 2rem 1rem;
	}
	.discover-section h2, .policy-section h1, .quote-info-section h1 {
		font-size: 1.5rem;
	}
	.discover-section p, .policy-section h2, .quote-info-section h2 {
		font-size: 0.875rem;
	}
	.discover-section p, .policy-section p, .quote-info-section p {
		font-size: 0.75rem;
		margin-bottom: 1rem;
	}
	.discover-button {
		font-size: 0.875rem;
	}
	.services-section {
		flex-direction: column;
		align-items: center;
		gap: 1.25rem;
		padding: 2rem 1rem;
	}
	.service-box {
		width: 100%;
		max-width: 90%;
	}
	.checklistform {
		padding: 1rem;
	}
	input, select, textarea {
		padding: 0.5rem;
	}
  }
