body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.page {
    padding: 20px;
}

.image-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.hawkgt-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
}

.engine-section {
    flex: 1;
    border-right: 2px solid #ccc; /* Add this line to create the border */
    border-bottom: 2px solid #ccc;
    padding-right: 10px; /* Add this line to create some space between the border and the content */
}

.chassis-section {
    flex: 1;
    padding-left: 10px; /* Add this line to create some space between the border and the content */
    border-bottom: 2px solid #ccc;
}

.engine-section ul,
.chassis-section ul {
    list-style-type: none;
    padding: 0;
}

@media (max-width: 768px) {
    .engine-section,
    .chassis-section {
        width: 100%;
    }
}

img {
    max-width: 25%;
    height: auto;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}