body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0073e6;
    color: white;
    padding: 1rem 2rem;
}

header .logo img {
    height: 50px; /* Set the maximum height for the logo */
    width: auto;  /* Maintain aspect ratio */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta {
    background-color: #ff6600;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.service-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}

.service img {
    height: 100px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}
