body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f1f1f1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 50px;
}

.hero {
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.hero button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

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

/* Other sections*/
.features, 
.pricing, 
.contact { 
    margin-bottom: 50px;
} 

footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
} 
