.nav-cta {
    background: #000000;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #333333 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    background: #000000;
    color: white;
}

.cta-primary:hover {
    background: #333333;
}

.cta-outline {
    padding: 0.5rem 1.5rem;
    border: 1px solid #000000;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    background: transparent;
    color: #000000;
}

.cta-outline:hover {
    background: #000000;
    color: white;
}

.nav-links .cta-outline {
    padding: 0.8rem 1rem;
    background: transparent;
    color: #000000;
}