/* Navigation Bar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.navbar .brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ff7c2b;
}

.navbar nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.navbar .cta {
    background: #ff7c2b;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.navbar .cta:hover {
    background: #e66a1c;
}

.brand-logo { 
    height: 1.5em; vertical-align: middle; margin-left: 0.4em; 
}