body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f6f3;
    color: #0e3d3d;
    margin: 0;
    line-height: 1.6;
}

header.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #e9e6e1;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: #0e3d3d;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0e3d3d;
    color: #f8f6f3;
    text-decoration: none;
    border-radius: 4px;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    color: #0e3d3d;
    border-bottom: 2px solid #0e3d3d;
    display: inline-block;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "• ";
    color: #0e3d3d;
}

.images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.images img {
    width: 32%;
    border-radius: 4px;
    background-color: #ddd;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact button {
    background-color: #0e3d3d;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e9e6e1;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .images img {
        width: 100%;
    }
}
