.privacy-card {
    display: grid;
    grid-template-columns: 55px 1fr 40px;
    gap: 20px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #e7e2dc;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.privacy-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #000;
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-card h3 {
    font-size: 1.55rem;
    margin-bottom: .8rem;
}

.privacy-card p {
    line-height: 1.8;
    margin: 0;
}

.privacy-arrow {
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
    justify-self: end;
}

.privacy-hint-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e7e2dc;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 20px;
}

.privacy-hint-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.privacy-hint-card h3 {
    margin-bottom: .6rem;
    font-size: 1.4rem;
}

.privacy-hint-card p {
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {

    .privacy-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .privacy-arrow {
        display: none;
    }

    .privacy-hint-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-hint-icon {
        margin: 0 auto;
    }

}