/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #4CAF50;
    color: white;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5em;
}

ul {
    list-style: none;
    display: flex;
}

ul li {
    margin-left: 20px;
}

ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    color: #4CAF50;
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
}

button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

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