@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}


header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    margin-left: auto;
    margin-right: auto;
    
}

.logo{
    cursor: pointer;

}

header img{
    height: 120px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    
}

.nav_links {
    list-style: none;

}

.nav_links li{
    display: inline-block;
    padding: 0px 30px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border:none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(0,136,169,0.8);

}



h1 {
    font-weight: 600;
    text-align: center;
    color: black;
    background-color: white;
    text-align: center;
    order: 2;
    padding: 10px 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius:20px ;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 1.5em;
    
}

p{
    padding: 30px;
    background-color: #3f3f3f;
    text-indent: 30px;
    font-size: 1.3em;
    color: white;
    border-radius: 25px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.container p{
    text-indent: 20px;
}

footer{
    background-color: #3f3f3f;
    height: 100px;
    margin-top: auto;
    padding: 30px;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h4{
    text-align: center;
    color: white;
    background-color: #3f3f3f;
    
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav_links {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        flex-direction: column;
    }

    .nav_links li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .nav_links.active {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

