body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: rgb(255, 255, 255);
    /* Default color */
    text-decoration: none;
}

.nav-list a:hover {
    color: rgb(169, 235, 213);
    /* Color on hover */
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    /* Increased height */
    background: #f4f4f4;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.content {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}