body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: rgb(245, 245, 245);
    color: #333;
    padding: 0px 0;
    border-bottom: 1px solid #ddd;
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    width: 200px;
    height: auto;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 50px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 10px 0;
    }

    header nav ul li {
        width: 100%;
        text-align: left;
    }
}
section {
    padding: 0px 0;
    border-bottom: 1px solid #ddd;
}

section#home {
    background: #0073e6;
    text-align: center;
    color: white;
}

section#home h1 {
    margin: 0;
    font-size: 2.5em;
}

section#home p {
    font-size: 1.2em;
}

section#about img {
    max-width: 25%;
    height: auto;
    margin-top: 20px;
}

section#services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

section#services ul li {
    background: #0073e6;
    color: white;
    padding: 10px;
    margin: 5px 0;
    text-align: center;
    border-radius: 5px;
}

section#feedback blockquote {
    background: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #0073e6;
    font-style: italic;
}

section#contact a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
