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;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    align-items: center;
    padding: 20px;
}

figure {
    text-align: center;
}

figure img, .image-right img {
    max-width: 100%; 
    height: auto;
    width: 100%; 
    border: 8px solid #000000; 
    border-radius: 5px;
}

.text-content h1 {
    text-align: center;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

.image-text-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.text-left {
    font-size: 1.1em;
    line-height: 1.6;
    padding: 0 20px;
    text-align: center; 
}

.text-left h2 {
    text-align: center; 
}

.image-right {
    text-align: center;
}

@media (max-width: 768px) {
    .grid-container, .image-text-container {
        grid-template-columns: 1fr; 
    }

    figure, .text-content, .text-left {
        text-align: center;
    }

    figure img, .image-right img {
        width: 100%;
    }
}


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;
}