.topbar {
    background: #1f6b2e;
}

.topbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
}

/* LEFT TEXT */
.topbar-container div {
    font-size: 21px;
    line-height: 25px;
}

/* BUTTON */
.topbar a {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: #3f9142; /* same as hero */
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.topbar a:hover {
    background: #367f38;
    transform: translateY(-1px);
}

.topbar a:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* Mobile View */
@media (max-width: 600px) {

    .topbar-container {
        padding: 10px 16px;
    }

    .topbar-container div {
        font-size: 14px;
        line-height: 20px;
    }

    .topbar a {
        font-size: 13px;
        padding: 6px 12px;
    }
}