body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.hero {
    background: url('images/header.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 15px 0;
    display: block;
}

.navbar ul li a:hover {
    color: #ddd;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

.hero-content p {
    font-size: 1.5em;
    margin: 0.5em 0;
}

main {
    padding: 50px 20px;
    text-align: center;
}

section {
    margin-bottom: 50px;
}

.section-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-top: 10px;
    font-size: 1.2em;
}

form input, form textarea {
    margin-top: 5px;
    padding: 10px;
    font-size: 1em;
    width: 80%;
    max-width: 500px;
    box-sizing: border-box;
}

form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

form button:hover {
    background-color: #45a049;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

