#notes {
    background: white;
    padding: 80px 28px;
}

.notes-inner {
    max-width: 760px;
    margin: 0 auto;
}

.note-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.note-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--blue-faint);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    padding: 22px 24px;
    transition: border-color .25s;
}

.note-card:hover {
    border-color: rgba(26, 144, 240, .3);
}

.note-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-card h4 {
    font-family: var(--font-d);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.note-card p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
}

.notes-foot {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-3);
    font-style: italic;
    text-align: center;
    line-height: 1.7;
}