body, h1, h2, p, ul, li, nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    text-align: center;
    background: #039492;
    color: #fff;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: start; /* Adjusts content to start, aligning the logo to the left */
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: left; /* Aligns logo to the left */
    padding-left: 1rem; /* Adds some padding on the left */
}

.logo {
    max-width: 150px; /* Enlarges the logo */
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

h1 {
    margin: 0.5rem 0; /* Adjusts spacing around the firm name */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Adds space between navigation items */
}

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

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav {
        margin-top: 1rem;
    }
}

