.home-hero {
    margin-bottom: 0;
}

.note-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.note-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/background2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: filter 0.3s ease;
}

.note h2 {
    font-size: 48px;
    font-weight: 700px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.note-wrapper:has(a:hover)::before {
    filter: blur(5px);
}

.note {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.note h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 0 0 1.25rem;
}

.note-wrapper a {
    display: inline-block;
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--white);
    border-radius: 17px;
    background-color: var(--primary-color);
    padding: 14px 40px;
    transition: background-color 0.2s ease;
}

.note-wrapper a:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

@media (max-width: 768px) {
    .note-wrapper {
        height: 320px;
    }

    .note h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}
