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

header{
    width:95%;
    margin:auto;
}

.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.logo img{
    width:220px;
}

.contact{
    text-align:right;
    font-size:18px;
    font-weight:bold;
}

nav{
    text-align:center;
    margin:25px 0;
}

nav a{
    color:black;
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
    margin:0 18px;
}

nav a:hover{
    color:#2d7a34;
}

.welcome{
    text-align:center;
}

.welcome h1{
    font-size:46px;
    margin-bottom:10px;
}

.welcome h2{
    font-size:28px;
    font-weight:normal;
    margin-top:0;
}

.main-image{
    text-align:center;
    margin:40px 0;
}

.main-image img{
    width:29%;
    max-width:900px;
}

.thumbnails{
    width:80%;
    margin:40px auto;
    display:flex;
    justify-content:space-between;
}

.thumb{
    text-align:center;
}

.thumb img{
    width:400px;
    height:278px;
    object-fit:cover;
}

.thumb h3{
    margin-top:10px;
    font-size:22px;
}

footer{
    width:95%;
    margin:90px auto 20px;
    display:flex;
    justify-content:space-between;
    border-top:1px solid lightgray;
    padding-top:15px;
}

contactFooter{
    width:95%;
    margin:90px auto 20px;
    display:flex;
    justify-content:space-between;
    border-top:1px solid lightgray;
    padding-top:15px;
}

footer a{
    color:black;
    text-decoration:none;
}
.contact-form{
    width:500px;
    margin:50px 0 50px 50px;
    font-family: Arial, sans-serif;
}

.contact-form h2 {
    margin-bottom: 5px;
    font-size: 32px;
}

.contact-form p {
    margin-bottom: 30px;
    color: #666;
    font-size: 18px;
}

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

.contact-form span {
    color: red;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #1d4d2d;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.contact-form input[type="submit"]:hover {
    background-color: #163c23;
}
.contact-container{
    width:95%;
    margin:50px auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

.contact-form{
    width:60%;
}

.contact-image{
    width:45%;
}

.contact-image img{
    width:70%;
    height:auto;
    display:block;
    border-radius:8px;
}