/* style.css */
body {
    scroll-behavior: smooth;
}

.n-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background-color: #00C868; /* MeinBalkoncheck vibrant green (jade) */
    border-radius: 0.375rem;
    transition: all 250ms ease;
    box-shadow: 0 4px 15px rgba(0, 200, 104, 0.15);
}

.n-cta:hover {
    background-color: #355FA8; /* MeinBalkoncheck hover blue (vblue) */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(53, 95, 168, 0.22);
}

.n-cta:active {
    transform: translateY(0);
}

/* Custom scrollbar for a polished look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
