
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

img {
    margin-bottom: 10px;
}


footer {
    background-color: #222;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.footer-title {
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-right: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    background-color: #444;
    border: 1px solid #444;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 35px;
    margin: 10px;
}

.footer-links a:hover {
    background-color: #fff;
    color: #444;
    border: 1px solid #444;
}

.footer-contact {
    margin-left: auto;
    color: #999;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-contact a:hover {
    color: #999;
}

body {
    background-color: #F7F9FC;
    font-family: 'Open Sans', sans-serif;
    color: #444;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.header h1 {
    font-size: 36px;
}

p {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

button {
    display: block;
    margin: 0 auto;
    padding: 16px 40px;
    border-radius: 30px;
    background-color: #00bfff;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #00cfff;
}

img {
    display: block;
    margin: 0 auto;
    height: auto;
    margin-top: 10px;
    margin-bottom: 5px;
}

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

}

header {
    background-color: #00bfff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Pacifico', cursive;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    overflow: hidden;
}

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

nav li {
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
}

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



@media screen and (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #00bfff;
        overflow: hidden;
        height: 0;
        transition: height 0.3s ease;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 10px 0;
    }

    nav a {
        padding: 10px 20px;
    }

    nav.active {
        height: calc(100vh - 70px);
    }
}

.menu-icon {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

a {
    display: inline-block;
    padding-top: 150px;
}



#features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#features h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
    flex-basis: 100%;
}

#features h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 40px;
    flex-basis: 100%;
}

#features ul {
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 60px;
    flex-basis: calc(60% - 20px);
}

#features li {
    margin-bottom: 16px;
}

#features img {
    max-width: 20%;
    height: auto;
    margin-top: 5px;
    margin-bottom: 80px;
    flex-basis: calc(40% - 20px);
}

@media screen and (max-width: 880px) {
    /*.menu-icon {*/
    /*    display: block;*/
    /*}*/

    /*nav ul {*/
    /*    display: none;*/
    /*}*/

    /*.mobilehidden{*/
    /*    display: none;*/
    /*}*/

    a {
        display: inline-block;
        padding-top: 10px;
    }

    header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        overflow: hidden;
    }

    button {
        display: block;
        margin: 0 auto;
        padding: 45px 40px;
        border-radius: 30px;
        background-color: #00bfff;
        color: #fff;
        font-size: 48px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

    img {
        display: block;
        margin: 0 auto;
        height: auto;
        margin-top: 0px;
        margin-bottom: 5px;
        width: 80%;
    }

    #features ul {
        font-size: 20px;
        line-height: 40px;
        margin: 0;
        padding: 20px;
        list-style-type: disc;
        margin-bottom: 60px;
        flex-basis: calc(60% - 20px);
    }

    nav a {
        color: #fff;
        text-decoration: none;
        font-size: 48px;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        display: block;
    }
    .header h1 {
        font-size: 55px;
    }


}