body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 2x2 Image Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates two columns */
    gap: 15px; /* Space between grid items */
    margin-top: 20px;
    background-color: #f4f4f4;
}

.grid-item img {
    padding: 15px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Navbar Styling */
.navbar {
    background-color: #0056b3;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

.grid-item img {
    width: 62%; /* Change this from 100% to a smaller value */
    height: auto;
    border-radius: 8px;
    display: block;
    margin: auto; /* Add this to center the smaller image */
}