
body {
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensure the body takes up at least the height of the viewport */
margin: 0;
padding: 0;
background-color: #9eafff;
color: #333;
position: relative; /* Position relative for the footer positioning */
font-family: 'Open Sans', sans-serif; /* Set default font to Open Sans */
}
header {
    background: #0f4d98;
    color: white;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header nav {
    margin-top: 0.5em;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 1em;
    font-size: 1em;
}

header nav a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6em 0;
    text-align: center;
    color: white;
    margin-top: 7em; /* Increased margin to create space between header and container */
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
}

.container {
flex: 1; /* Make the container grow to fill the remaining space */
width: 85%;
max-width: 1200px;
margin: auto; /* Center horizontally */
padding-bottom: 4em; /* Add space at the bottom for the footer */
margin-top: 15vh;
}

.section {
    background: white;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.section h2 {
    border-bottom: 2px solid #0f4d98;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    font-size: 2em;
}

.section p,
.section li {
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 1em;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.photos div {
    width: 48%;
    margin-bottom: 1em;
    text-align: center;
}

.photos img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pricing,
.contact,
.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing div,
.contact div,
.about div {
    width: 48%;
    margin-bottom: 1em;
}

.pricing div h3,
.about div h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    color: #0f4d98;
}

.about img {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

footer {
background: #0f4d98;
color: white;
text-align: center;
padding: 1em 0;
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
position: absolute;
width: 100%;
bottom: 0;
}



footer p {
    margin: 0;
    font-size: 1em;
}

.before-after-slider {
    display: flex;
    justify-content: space-between;
}

.before-after-slider div {
    width: 48%;
}

.before-after-slider img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


h1, h2, h3, h4, h5, h6{
    font-family: 'Roboto', sans-serif; /* Set headings to Roboto */
}

.blog-post p {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /* Add any other styling you want for the blog post text */
}
