section:nth-of-type(1) {
	display: flex;
	justify-content: center;
	padding: 80px 80px 20px 80px;
}
section:nth-of-type(1) > div > h2 {
	margin: 100px 0 30px 0;
	display: flex;
	justify-content: center;
	font-size: 3rem;
}
section:nth-of-type(1) > div > div {
	max-width: 800px;
}
/*------------ section two ----------------*/
section:nth-of-type(2) {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 80px;
	box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 400px) {
	section:nth-of-type(2) {
		padding: 80px 20px;
	}
}
section:nth-of-type(2) > div {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
section:nth-of-type(2) > div > div {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 500px;
    flex: 1 1 calc(33.33% - 40px); /* Adjust to fit three in a row with gaps */
    min-width: 300px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
}
@media only screen and (max-width: 400px) {
	section:nth-of-type(2) > div > div {
		min-width: 200px;
	}
}
section:nth-of-type(2) > div > div:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
section:nth-of-type(2) > div > div > h2 {
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 20px;
	font-size: 1.5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/*
section:nth-of-type(2) > div > div > p:nth-of-type(1) {
	display: flex;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: bold;
	padding: 20px 20px 0;
}
section:nth-of-type(2) > div > div > p:nth-of-type(1) > li {
	list-style: none;
	margin-left: 5px;
}
*/
section:nth-of-type(2) > div > div > div:nth-of-type(1) {
	padding: 20px 0 0 0;
	display: flex;
	justify-content: center;
	gap: 5px;
}
section:nth-of-type(2) > div > div > div > li {
	display: inline-flex;
	font-size: 2.5rem;
	font-weight: bold;
}
section:nth-of-type(2) > div > div > p {
	display: flex;
	justify-content: center;
	padding: 0 0 20px;
}
/**/
.checklist {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    line-height: 1.5;
    max-width: 100%;
}
.checklist ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
	gap: 20px;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.checklist-item img {
    flex-shrink: 0;
    width: 25px;
    height: auto;
	transition: filter .1s ease-in-out;
	filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.5));
}
.checklist-item img:hover {
	filter: drop-shadow(-2px 0px 1px rgba(0, 0, 0, 0.5));
}
.checklist-item span {
    font-size: 1.25rem;
    color: #000;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    max-width: calc(100% - 35px);
}
/**/
section:nth-of-type(2) > div > div > div:nth-of-type(3) {
	display: flex;
	justify-content: center;
	padding: 0 0 20px;
}
section:nth-of-type(2) > div > div > div:nth-of-type(3) > a {
	color: #000;
	font-weight: bold;
	font-size: 1.25rem;
	padding: 10px 20px;
	width: 100px;
	text-align: center;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
	transition: box-shadow .2s ease-in-out;
}
section:nth-of-type(2) > div > div > div:nth-of-type(3) > a:hover {
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
}



/*----------- section three ---------------*/
/*----------- section four ---------------*/
/*----------- section five ---------------*/
section:nth-of-type(3),
section:nth-of-type(4),
section:nth-of-type(5) {
	padding: 80px;
}
@media only screen and (max-width: 900px) {
	section:nth-of-type(3),
	section:nth-of-type(4),
	section:nth-of-type(5) {
		padding: 40px;
	}
}
section:nth-of-type(3) > div > div,
section:nth-of-type(4) > div > div,
section:nth-of-type(5) > div > div {
	display: flex;
/*	padding: 20px;*/
	gap: 40px;
	justify-content: space-between;
/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);*/
}
@media only screen and (max-width: 900px) {
	section:nth-of-type(3) > div > div,
	section:nth-of-type(4) > div > div,
	section:nth-of-type(5) > div > div {
		flex-direction: column;
	}
}
section:nth-of-type(3) > div > div > div:nth-of-type(1), section:nth-of-type(4) > div > div > div:nth-of-type(1),
section:nth-of-type(5) > div > div > div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	line-height: 2;
	max-width: 600px;
	margin: 0 auto;
	gap: 40px;
}
section:nth-of-type(3) > div > div > div:nth-of-type(1) > h2,
section:nth-of-type(4) > div > div > div:nth-of-type(1) > h2,
section:nth-of-type(5) > div > div > div:nth-of-type(1) > h2 {
	text-align: center;
/*	padding: 20px 0 30px;*/
	padding: 30px 0 0;
	line-height: 0;
	font-size: 2.25rem;
	font-weight: bold;
}
/**/
section:nth-of-type(3) > div > div > div:nth-of-type(2),
section:nth-of-type(4) > div > div > div:nth-of-type(2),
section:nth-of-type(5) > div > div > div:nth-of-type(2) {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 500px;
    flex: 1 1 calc(33.33% - 40px);
    min-width: 300px;
    transition: box-shadow 0.2s ease;
    overflow: hidden;
    padding-bottom: 20px;
}
@media only screen and (max-width: 900px) {
    section:nth-of-type(3) > div > div,
    section:nth-of-type(4) > div > div,
    section:nth-of-type(5) > div > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section:nth-of-type(3) > div > div > div:nth-of-type(2),
    section:nth-of-type(4) > div > div > div:nth-of-type(2),
    section:nth-of-type(5) > div > div > div:nth-of-type(2) {
        flex: none;
        max-width: 100%;
    }
}
@media only screen and (max-width: 400px) {
	section:nth-of-type(3) > div > div > div:nth-of-type(2),
	section:nth-of-type(4) > div > div > div:nth-of-type(2),
	section:nth-of-type(5) > div > div > div:nth-of-type(2) {
		min-width: 200px;
	}
}
section:nth-of-type(3) > div > div > div:nth-of-type(2):hover,
section:nth-of-type(4) > div > div > div:nth-of-type(2):hover,
section:nth-of-type(5) > div > div > div:nth-of-type(2):hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
section:nth-of-type(3) > div > div > div:nth-of-type(2) > h2,
section:nth-of-type(4) > div > div > div:nth-of-type(2) > h2,
section:nth-of-type(5) > div > div > div:nth-of-type(2) > h2 {
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 20px;
	font-size: 1.5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
section:nth-of-type(3) > div > div > div:nth-of-type(2) > div:nth-of-type(1),
section:nth-of-type(4) > div > div > div:nth-of-type(2) > div:nth-of-type(1),
section:nth-of-type(5) > div > div > div:nth-of-type(2) > div:nth-of-type(1) {
	padding: 20px 0 0 0;
	display: flex;
	justify-content: center;
	gap: 5px;
}
section:nth-of-type(3) > div > div > div:nth-of-type(2) > div > li,
section:nth-of-type(4) > div > div > div:nth-of-type(2) > div > li,
section:nth-of-type(5) > div > div > div:nth-of-type(2) > div > li {
	display: inline-flex;
	font-size: 2.5rem;
	font-weight: bold;
}
section:nth-of-type(3) > div > div > div:nth-of-type(2) > p,
section:nth-of-type(4) > div > div > div:nth-of-type(2) > p,
section:nth-of-type(5) > div > div > div:nth-of-type(2) > p {
	display: flex;
	justify-content: center;
	padding: 0 0 20px;
}
section:nth-of-type(3) > div > div > div > div:nth-of-type(3),
section:nth-of-type(4) > div > div > div > div:nth-of-type(3),
section:nth-of-type(5) > div > div > div > div:nth-of-type(3) {
	display: flex;
	justify-content: center;
}
section:nth-of-type(3) > div > div > div > div:nth-of-type(3) > a,
section:nth-of-type(4) > div > div > div > div:nth-of-type(3) > a,
section:nth-of-type(5) > div > div > div > div:nth-of-type(3) > a {
	color: #000;
	font-weight: bold;
	font-size: 1.25rem;
	padding: 10px 20px;
	width: 100px;
	text-align: center;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
	transition: box-shadow .2s ease-in-out;
}
section:nth-of-type(3) > div > div > div > div:nth-of-type(3) > a:hover,
section:nth-of-type(4) > div > div > div > div:nth-of-type(3) > a:hover,
section:nth-of-type(5) > div > div > div > div:nth-of-type(3) > a:hover {
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
}
/*---------------- section five -----------------*/
section:nth-of-type(6) {
	display: flex;
	justify-content: center;
	padding: 0 0 80px 0;
}
section:nth-of-type(6) > div > figure:nth-of-type(1) {
	max-width: 500px;
	text-align: center;
	grid-column: 1; 
    grid-row: 1 / 3;
	z-index: 0;
}
section:nth-of-type(6) > div > figure > h2 {
	text-align: center;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.contact-form {
	max-width: 400px;
	flex: 1;
	margin: auto;
}
.contact-form label {
	display: block;
	margin-bottom: 10px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	transition: box-shadow .2s ease;
	outline: none;
	cursor: pointer;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:focus,
.contact-form input[type="email"]:hover,
.contact-form input[type="date"]:focus,
.contact-form input[type="date"]:hover,
.contact-form textarea:focus,
.contact-form textarea:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.contact-form textarea {
	min-height: 200px;
	max-height: 500px;
	resize: vertical;
	width: 100%;
}
.contact-form input[type="submit"] {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	padding: 5px 10px;
	min-width: 150px;
	align-items: center;
	align-content: center;
	cursor: pointer;
	display: block;
	margin: auto;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	outline: none;
	border: none;
    border-radius: 5px;
	transition: box-shadow .2s ease;
}
.contact-form input[type="submit"]:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
