* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8f8;
    color: #222;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-bottom: 1px solid #eee;

}

.logo {

    .logo img {
    height: 55px;
}
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    background: #ffffff;
}

.btn-outline {
    padding: 8px 18px;
    border: 2px solid #000;
    border-radius: 4px;
}

/* HERO */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(to right, #ffffff 40%, #f0f0f0);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary {
    background: black;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 80px 8%;
    background: white;
}

.feature {
    width: 30%;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature p {
    color: #666;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: white;
}