/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #ffe6cc;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline;
    padding: 0 20px 0 20px;
}

header .logo {
    float: left;
    width: 200px;
    height: auto;
}

header nav {
    float: right;
    margin-top: 10px;
}

section {
    padding: 20px 0;
    border-bottom: #77aaff 1px solid;
}

h1, h2 {
    text-align: center;
}

.main-image, .about-image, .services-image, .amenities-image, .activities-image, .testimonials-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
}

form input, form textarea, form button {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer nav ul {
    padding: 0;
    list-style: none;
}

footer nav ul li {
    display: inline;
    padding: 0 10px;
}