/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

nav {
    background: #4fbca3;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #f4f4f4;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #4fbca3;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Add more styles as needed */