* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    min-width: min-content;
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
}

p, ul {
    font-size: 16px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

#navigation-container li {
    margin-bottom: 0;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 40px;
}

.contact-info p {
    margin: 5px 0;
}

.footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 50px;
}
#navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #000;
    width: 100%;
    overflow: hidden;
    list-style-type: none;
}

#navigation-container li {
    width: 100%;
}
#navigation-container li:first-child a {
    justify-content: flex-start;
}
#navigation-container li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 16px;
    transition: background-color 0.3s ease;
    font-family: PT Serif , sans-serif, arial;
}
#dropdown {
    display: none;
}
#dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    z-index: 1;
}
#dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
#dropdown-content a:hover {
    background-color: #5f5f5f;
}

#navigation-container a:hover {
    background-color: #5f5f5f;
}

#dropdown-content a:active {
    background-color: #5f5f5f;
}
#dropdown-icon {
    text-align: left;
}
#navigation-container a:active {
    background-color: #5f5f5f;
}
@media (max-width: 600px) {
    #navigation-container li a {
        font-size: 1rem;
    }
}
@media (max-width: 800px) {
    #navigation-container
    {
        justify-content: left;
    }
    #navigation-container li {
        display: none;
    }
    #navigation-container li a #mobile-logo {
        display: block;
        text-align: right;
    }
    #navigation-container li#dropdown {
        display: block;
    }

    #navigation-container li#dropdown #dropdown-content {
        position: relative;
    }

    #navigation-container li a#dropbtn {
        background-color: #333;
        color: white;
        padding: 14px 20px;
        cursor: pointer;
    }

    #navigation-container li a#dropbtn:hover {
        background-color: #111;
    }
}
.nav-logo {
    margin-right: 6vw;
    width: 50px;
    height: 50px;
}
#mobile-logo {
    width: 30px;
    height: 30px;
    margin-right: auto;
}