/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    background-color: orange;
    color: #fff;
    padding: 10px;
    text-align: right;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
}

.logo{
    margin-right: 900px;
    height:50px;
    width:50px;
}

nav ul li {
    display:inline ;
    margin-right: 20px;
    font-size: larger;
    justify-content: center;
    padding-bottom:100px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.main-content, .services, .about-us {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: orange ;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: 515151;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

