body {
    margin: 0;
    padding: 0;
    font-family: Arial;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f5f5f5;
    border-radius: 10px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.btn {
    background: orange;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}
.btn:hover {
    background-color: #e64500;
}