body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body{
    min-height: 100vh;
}

.nav-toggle {
    display: none;
}

header {
    background: #fcfcfc;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.box-image {
    max-width: 100%;
    display: flex;
    justify-content: center
}

body > main > section:nth-child(1) > div > div:nth-child(2) > img{
    padding-bottom: 25px;
    padding-top:17px;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333; /* previously white */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #e8e8e8;
}

.hero {
    /* background: url('hero-background.jpg') no-repeat center center/cover; */
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333; 

}

.two-box-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.container{
    max-width: 700px;
    min-width: 350px;
}

.header{
    /* display:none; */
    display: flex;
}

.content{
    /* display:none; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* max-width: 700px; */
}

.option-box {
    border: solid;
    padding: 10px;
    margin: 0 10px; 
    width: 40vw;
}

.option-box > .learn-more{
    margin: 0 auto;
}

.learn-more{
    border: solid;
    margin: 0 10px;
    line-height: 1.2;
    width: 60%;
}

.services-p{
    padding-left: 40px;
    padding-right: 40px;
}

.learn-more > p{
    margin:auto;
    max-width: 115px;
}

.tail-section {
    width: 100vw;
    height: 10vh;
    background-color: #f2f2f2;
    position: fixed; 
    bottom: 0;
}

.title-container{
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

.tail-section > p{
    /* display: none; */
    text-align: center;
    font-size: 12px;
}

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
        margin-left: 40vw;

    }

    .nav {
        width: 100%;
    }

    .hamburger {
        display: block;
        width: 30px; 
        height: 3px; 
        background: rgb(178, 178, 178);
        margin: 4px 0; 
        transition: all 0.3s ease; 
        border-radius: 2px; 
    }
    .nav-toggle:hover .hamburger {
        background: #bbb;
    }


    body > header > nav > ul {
        display: none; 
        flex-direction: column;
        width: 100%; 
        background-color: #333; 
        position: absolute; 
        top: 60px; 
        left: 0;
        margin-top: 0; 
        padding: 0;
    }

    .nav.active ul {
        display: flex; 
    }

    .nav.active .hamburger {
        transform: rotate(45deg); 
    }

    nav ul li {
        margin: 5px 0; 
        width: 100%; 
    }

    nav ul li a {
        color: white;
        padding: 10px;
        display: block; 
        transition: background-color 0.3s ease; 
    }

    nav ul li a:hover {
        background-color: #555;
    }
    
}
