body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #e1af18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2em;
    height: 50px;
}

.logo-container img {
    height: 80px;
    width: auto;
    margin-left: 20px;
}

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

nav ul li {
    margin: 0 15px;
    font-size: 1.2em;
    font-weight: bold;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-button:hover {
    background-color: #e1af18;
    color: black;
}

.content {
    display: flex;
    justify-content: space-between;
    margin: 2em;
}

.image-left, .image-right {
    width: 45%;
}

.image-left img, .image-right img {
    width: 100%;
    height: auto;
    border: 8px solid black; 
    display: block;
    margin: 0 auto;
}

.text-middle {
    width: 50%;
    margin: 20px;
    margin-top: 0%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.text-middle h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.text-middle p {
    font-size: 1.2em;
    line-height: 1.6;
}

.long-text {
    width: 100%;
    padding: 20px;
    background-color: #f1f1f1;
    margin-top: 20px;
    font-size: 1.2em;
    line-height: 1.8;
}

footer {
    background-color: #e1af18;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0px; 
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer h4, footer h3 {
    margin: 0;
    font-size: 14px;
}

footer h4 {
    text-align: right;
    padding-right: 10%;
    font-size: 18px;
}

footer h3 {
    text-align: left;
    padding-left: 10%;
    font-size: 18px;
}