/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    background: #eaeaea;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

#logo {
    width: 40px;
	text-align: bottom;
}

#hero {
    background: url('hero4.png') no-repeat center center/cover;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

section {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #blue; /* Replace with your logo's color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}
