body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

header {
    background-color: #34495e;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #f39c12;
}

.hero {
    background: url('dist/hero-image.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    margin-bottom: 1em;
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero button {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #c0392b;
}

section {
    padding: 3rem 2rem;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.features div {
    width: 30%;
    margin: 15px;
    padding: 15px;
    background-color: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    width: 100%;
    bottom: 0;
}

footer a {
    color: #fff;
}

#contact-form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 30px auto;
}

#contact-form label {
    margin-top: 1rem;
    font-weight: bold;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
}

#contact-form button {
    margin-top: 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s, transform 0.2s;
}

#contact-form button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}