
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8fdfc;
    color: #2e3d35;
}
.hero {
    background: url('hero-image.jpg') center center / cover no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3em;
    text-align: center;
    border-radius: 10px;
}
.hero-logo {
    height: auto;
    width: 280px; /* Aumenta este valor según lo grande que quieras el logo */
    max-width: 100%;
    margin-bottom: 1em;
}
.hero-title {
    font-size: 2em;
    margin-bottom: 0.5em;
}
.hero-slogan {
    font-size: 1.2em;
    font-style: italic;
}
nav {
    background-color: #e1ede9;
    text-align: center;
    padding: 0.5em 0;
}
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li {
    display: inline;
    margin: 0 1.5em;
}
.nav-links a {
    text-decoration: none;
    color: #007b5f;
    font-weight: bold;
}
.nav-links a:hover {
    color: #004d3a;
}
main {
    padding: 2em;
}
section {
    margin-bottom: 3em;
}
ul {
    list-style: none;
    padding: 0;
}
ul li::before {
    content: "✔️ ";
    color: #007b5f;
}
.contact-form form {
    display: grid;
    gap: 1em;
    max-width: 500px;
    margin: auto;
}
input, textarea {
    padding: 0.8em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background-color: #00a68a;
    color: white;
    padding: 0.8em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #007b5f;
}
footer {
    background-color: #e1ede9;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}
