body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('images/m_bg.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    text-align: justify;
}

header {
    color: black;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    font-weight: bold;
}

nav ul li a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: #6f6135;
    text-decoration: bold;
}

section {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border: 1px solid #6a5830;
    border-radius: 10px;
    width: 80%;
    overflow: hidden;
}

footer {
    background-color: #ffffff;
    color: black;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #6a5830;
    font-size: 14px;
}

#contact-form {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    #contact-form h2 {
      text-align: center;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }
    .form-group label {
      margin-bottom: 5px;
    }
    .form-group input, .form-group textarea {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 3px;
      width: 100%;
      box-sizing: border-box;
    }
    .form-group textarea {
      resize: vertical;
    }
    .form-group button {
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      background-color: #007bff;
      border: none;
      border-radius: 3px;
      cursor: pointer;
    }
    .form-group button:hover {
      background-color: #0056b3;
    }

    .contact-info {
      text-align: center;
      margin-top: 20px;
      font-size: 16px;
    }
    .contact-info a {
      color: #000000;
      text-decoration: underline;
    }
    .contact-info a:hover {
      text-decoration: none;
      color: #6f6135;
    }

    .opening-hours {
      text-align: left;
      margin-top: 20px;
      font-size: 16px;
    }

.responsive-image {
    max-width: 90%;
    height: auto;
}

@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        font-size: 22px;
    }
}

        .float-image-left {
            float: left;
            margin-right: 10px;
	    margin-bottom: 10px;
            margin-left: 1px;
	    margin-top: 1px;
	    max-width: 100%;
	    height: auto;
        }

        .float-image-right {
            float: right;
            margin-right: 1px;
	    margin-bottom: 10px;
            margin-left: 10px;
	    margin-top: 1px;
	    max-width: 100%;
	    height: auto;
        }

ul {
    list-style-type: none;
    padding: 0;