body {
    /*font-family: sans-serif;*/
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #1583E9;
    color: white;
    padding: 5px;
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

.hero {
    background: #e9ecef;
    padding: 1rem 0rem 1rem 0rem;
    text-align: center;
}

.cta-button {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.features, .about {
    padding: 10px 3px;
    text-align: center;
    width: 100%;
    margin: auto;
}

.feature-container {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
}

.feature-container :hover {
    /*background-color: #007BFF;*/
    opacity: 0.7;
    cursor: pointer;
    color: white;
}

.feature-item {
    flex-basis: 30%;
    padding: 0rem;
    border: 1px outset #ddd;
    border-radius: 5px;
}

p {
    font-weight: bold;
    color: white;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 5rem;
}