body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f5f0;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.top-contact {
    background-color: #344e41;
    color: white;
    text-align: right;
    padding: 10px 5%;
    font-size: 14px;
}

header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 3px solid #d4a373;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: #344e41;
}

.logo p {
    margin: 5px 0 0;
    color: #777777;
    font-style: italic;
}

nav a {
    color: #344e41;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #d4a373;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-top: 25px;
}

.welcome {
    text-align: center;
    padding: 30px 15px;
}

.welcome h2 {
    color: #344e41;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;
}

.thumbnail {
    width: 33%;
    background-color: white;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 2px 8px #cccccc;
}

.thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.thumbnail a {
    color: #344e41;
    font-weight: bold;
    text-decoration: none;
}

.thumbnail a:hover {
    color: #d4a373;
}

.page-content {
    background-color: white;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 35px;
    line-height: 1.7;
}

.page-content h2,
.page-content h3 {
    color: #344e41;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
}

.contact-form button {
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #344e41;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #344e41;
    color: white;
    padding: 20px 0;
    font-size: 13px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

footer a {
    color: white;
    text-decoration: none;
    margin-right: 12px;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
    .header-content,
    .thumbnails,
    .footer-content {
        display: block;
    }

    nav {
        margin-top: 20px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .thumbnail {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-image {
        height: 280px;
    }

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