body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: rgb(4, 4, 31);
    background-color: #f9f9f9;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1.5em;
    text-align: right;
}

header .logo {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2 s ease-in-out;
}

nav a:hover {
    color: blue;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    margin: 0 auto;
    max-width: 800px;
}

.hero {
    background-image: linear-gradient(to bottom, #333, #555);
    background-size: 100% 300px;
    background-position: 0% 100%;
    height: 130px;
    display: block;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero p{
    font-size: 22px;
}
.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services li {
    margin-bottom: 10px;
}

.testimonials blockquote {
    background-color: #f9f9f9;
    padding: 10px;
    border-left: 5px solid #333;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    clear: both;
}

footer p {
    margin-bottom: 10px;
}

/* Add styles for responsive navigation menu */
.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    nav.active {
        display: block;
    }
}

img {
    width: 25%;
    height: 20%;
}