html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}
html, body {
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
ol li {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
ul li {
    margin-bottom: 20px;
    padding-bottom: 10px; 
}
/* Button styling */
#free-analysis-button {
        background-color: #78c679; 
        color: white; 
        border: 2px solid #4e8c4f;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1.2rem;
        line-height: 1.2rem;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
 /* Hover effect */
 #free-analysis-button:hover {
        background-color: #4e8c4f; 
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); 
    }
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f4ec;
    color: black;
    padding: 10px 40px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
	position: sticky; 
    top: 0; 
    z-index: 1000; 
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a {
    text-decoration: none;
    color: black;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}
/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 75vh;
    background: url('../images/family.jpg') no-repeat center center;
    background-size: cover;
	background-attachment: fixed;
    padding: 20px;
}
@media (max-width: 768px) {
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 75vh;
    background: url('../images/panels-small-size.png') no-repeat center center;
	 background-size: cover;
	 background-attachment: scroll;
    padding: 20px;
}
}
.hero.go-green{
    background: url('../images/go-green-hero-small-size.png') no-repeat center center;
    background-size: cover;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.hero h1, .hero-content {
    position: relative; /* Ensures content is above the overlay */
    z-index: 2;
}
.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.5em;
    text-align: center;
    color: black;
    margin-bottom: 30px;
}
.hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: flex-start;
}
.hero .text {
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    color: black;
    padding: 20px;
    max-width: 600px;
    flex: 1; 
}
.hero .form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    max-width: 400px;
    flex: 1; 
}
.title-headings-black {
    font-size: clamp(1.5rem, 2vw, 3rem);
    font-weight: bold;
    color: #333;
    display: block;
    margin: 20px 0;
    text-align: center;
}
.title-headings-white {
    font-size: clamp(1.5rem, 2vw, 3rem);
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin: 20px 0;
    text-align: center;
}
.image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    text-align: center;
}
.form h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5em;
}
form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 1em;
    color: #555;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px; 
    margin-bottom: 15px;
    font-size: 1em;
}
.consent {
    display: flex;
    align-items: flex-start;
    font-size: 0.7em;
    color: #666;
    margin: 15px;
    line-height: 1; 
	width: 96%; 
    box-sizing: border-box; 
}
.consent input[type="checkbox"] {
    width: 15px; 
    height: 15px; 
    margin-right: 10px;
    flex-shrink: 0; 
    margin-top: 0px; 
}
.consent label {
    display: inline-block;
    text-align: left; 
    flex: 1; 
	word-wrap: break-word; 
    margin-top: 0; 
}
.consent label::first-line {
    text-indent: 0; 
}
.consent a {
    color: #007BFF;
    text-decoration: none;
}
.consent a:hover {
    text-decoration: underline;
}
form button {
    display: block;
    width: calc(100% - 5px);
    padding: 12px;
    background-color: #8bc34a; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 15px;
}
form button:hover {
    background-color: #7cb342; 
}
.icon-hero-section {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 35px; 
    padding: 20px; 
    width: 100%; 
	max-width: 640px;
    box-sizing: border-box; 
}
.iconhero {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    max-width: 150px; 
	width:100%; 
    height: auto; 
}
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
}
.icon-container p {
    margin-top: 10px;
    font-size: .7em; 
    color: black;
    font-family: "Roboto", sans-serif; 
}
.about-us{
    margin: 0 auto;
	width:100%; 
	max-width:1000px;  
	padding:10px;
	font-size: 1.2em;
	color: black; 
	font-family: "Roboto", sans-serif; 
	text-align: left;
}
.about-us2{
    margin: 0 auto;
	width:100%; 
	max-width:1000px;  
	padding:20px;
	font-size: 1.4em;
	color: white; 
	font-family: "Roboto", sans-serif; 
	text-align: left;
}
.about-us em {
color: #0000c4; 
font-weight: bold;
}
.go-green-image{
width:100%;
max-width: 1000px;
margin: 0 auto;
}
/* Sections */
.white-section {
    background-color: #f8f4ec;
    color: black;
    padding: 40px;
    text-align: center;
}
.white-section h1 {
	font-size: 2.5em;
	font-family: "Roboto", sans-serif; 
}
.blue-section {
    background: linear-gradient(to top right, #0d2741 20%, #1e3a5f 50%, #4682b4 100%);
    color: white; 
    padding: 40px 0;
	 text-align: center;
}
.green-section {
    background: linear-gradient(to top right, #064e3b 20%, #0f766e 50%, #16a34a 100%);
    background-attachment: fixed; /* Enables parallax effect */
    color: white;
    padding: 40px 0;
    text-align: center;
}
footer {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #282828;
    color: white;
    padding: 20px;
    box-sizing: border-box; 
}
.bottom-page {
    width: 100%;
    max-width: 100vw;
    background-color: #282828;
    color: white;
    padding: 20px; 
    box-sizing: border-box; 
    overflow: hidden;
	font-size:12px;
}
.bottom-page a {
color:white;
text-decoration: none;
line-height: 1.7; 
}
.footer-column {
    flex: 1;
    padding: 0 10px; 
	font-size: 15px;
}
.maryland-map{
width:100%;
max-width: 400px;
height: auto;
}
@media (max-width: 1350px) {
 .hero h1 {
        font-size: 3em; 
        text-align: center; 
        margin-bottom: 10px;
    }
} /* end screen 1350px */
@media (max-width: 1160px) {
 .hero h1 {
        font-size: 2.5em; 
        text-align: center;
        margin-bottom: 10px; 
    }
} /* end screen 1160px */
@media (max-width: 975px) {
     .consent {
        font-size: 0.7em;
        line-height: 1;
        flex-wrap: wrap; 
    }
    .consent input[type="checkbox"] {
        margin-top: 0px;
    }
    .consent label {
        text-align: left;
        margin-top: 0;
    }
    .hero {
        flex-direction: column; 
        align-items: center;
        height: auto;
        
    }
    .hero-content {
        flex-direction: column;
        width: 100%; 
        align-items: center; 
    }
    .hero h1 {
        font-size: 2em; 
        text-align: center; 
        margin-bottom: 1px; 
    }
    .hero .text,
    .hero .form {
        flex: none; 
        width: 90%; 
        max-width: 600px; 
        margin: 10px 0; 
    }
    .hero .text {
        font-size: 1.2em; 
        text-align: center; 
    }
    .hero .form {
        margin: 0 auto;
        padding: 20px; 
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
    }
    .hero .form input, {
        width: 95%;
        margin: 10px 0;
    }
	.hero .form button {
        width: 100%; 
        margin: 10px 0;
    }
} /* end screen 975px */
@media (max-width: 768px) {
    nav ul {
        display: none; 
        flex-direction: column;
        background-color: gray; 
        color: white; 
        position: absolute;
        top: 55px; 
        right: 10px; 
        width: 180px; 
        border-radius: 5px; 
        padding: 10px; 
        opacity: 0;
        visibility: hidden; 
        transition: all 0.3s ease-in-out; 
    }
    nav.active ul {
        display: flex; 
        opacity: 1; 
        visibility: visible; 
    }
    nav ul li {
        margin: 5px 0; 
    }
    nav ul li a {
        color: white; 
        text-decoration: none;
        padding: 10px; 
        display: block; 
    }
    .menu-toggle {
        display: block;
    }
.white-section h1 {
font-size:1.2em;
}
} /* end screen 768px */
.flex-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.flex-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}
.flex-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.flex-item {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    text-align: center;
}
.flex-item h2 {
    margin: 10px 0;
    font-size: 22px;
    font-weight: bold;
}
.flex-item p {
    width: 100%;
	max-width: 300px;
    font-size: 16px;
	text-align: left !important;
    color: #ffffff;
}
.flex-item-container{
margin: 0 auto;
width: 100%;
max-width: 300px;
}
.flex-image {
    max-width: 210px;
    height: auto;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .flex-item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}
.flex-message-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    color: #ffffff;
    margin-bottom: 20px;
}
.flex-message-image {
    max-width: 200px;
    margin-right: 20px;
    margin-bottom: 10px;
}
.flex-message-text {
    flex: 1;
    margin: 0;
	padding: 20px;
}
@media (max-width: 600px) {
    .flex-message-container {
        flex-direction: column;
    }
    .flex-message-image {
	    margin: 0 auto;
        width: 100%;
		max-width:250px;
    }
    .flex-message-text {
        text-align: left;
    }
	.about-us2{
    margin: 0 auto;
	width:100%; 
	max-width:1000px;  
	padding:20px;
	font-size: 1.3em;
	padding-right:20px !important;
	color: white; 
	font-family: "Roboto", sans-serif; 
	text-align: left;
}
}
.special-headline{
font-family: "Space Grotesk", sans-serif; 
color: #32cd32;
font-size: 1.7em;
font-weight: 700;
text-shadow: -1px -1px 0 #1e3a5f, 1px -1px 0 #1e3a5f, -1px 1px 0 #1e3a5f, 1px 1px 0 #1e3a5f;
-webkit-text-stroke: 1px #1e3a5f;
-webkit-text-fill-color: #32cd32;
}
.bottom-blue-box{
background-color: #7ec8e3;
border: 2px solid #4682b4;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
padding: 20px;
width: 90%;
margin: auto;
}