.page-privacy-policy {
    background:
            radial-gradient(
                    circle at 78% 12%,
                    rgba(125, 42, 232, 0.14),
                    transparent 32%
            ),
            #232323;
}

.privacy-policy-main {
    flex: 1 0 auto;
    width: 100%;
    min-height: calc(100svh - 48px);
    padding:
            calc(var(--header-height) + clamp(3rem, 7vw, 5rem))
            var(--page-gutter)
            clamp(4rem, 8vw, 6rem);
}

.privacy-policy-container {
    width: min(100%, 1050px);
    margin: 0 auto;
}

.privacy-policy-heading {
    max-width: 720px;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    color: #fbf5f5;
}

.privacy-policy-heading h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.12;
}

.privacy-policy-heading h1 span {
    color: #7d2ae8;
}

.privacy-policy-heading p {
    color: #c9c9c9;
    font-size: 1rem;
    line-height: 1.75;
}

.privacy-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.privacy-policy-card {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: clamp(1.4rem, 4vw, 2rem);

    color: #fbf5f5;
    background:
            linear-gradient(
                    135deg,
                    rgba(125, 42, 232, 0.15),
                    rgba(76, 76, 76, 0.76)
            );
    border: 1px solid rgba(125, 42, 232, 0.35);
    border-radius: 18px;

    box-shadow:
            0 18px 42px rgba(0, 0, 0, 0.32),
            0 0 30px rgba(125, 42, 232, 0.06);

    transition:
            transform 0.3s,
            border-color 0.3s,
            box-shadow 0.3s;
}

.privacy-policy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(165, 106, 239, 0.75);
    box-shadow:
            0 24px 48px rgba(0, 0, 0, 0.38),
            0 0 35px rgba(125, 42, 232, 0.1);
}

.privacy-policy-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    color: #c69af7;
    background: rgba(125, 42, 232, 0.18);
    border: 1px solid rgba(165, 106, 239, 0.5);
    border-radius: 15px;

    font-size: 1.55rem;
}

.privacy-policy-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.privacy-policy-type {
    margin-bottom: 0.4rem;
    color: #b985f4;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-policy-content h2 {
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
    line-height: 1.35;
}

.privacy-policy-content p {
    margin-bottom: 1.4rem;
    color: #c8c8c8;
    font-size: 0.86rem;
    line-height: 1.7;
}

.privacy-policy-download {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.65rem;

    margin-top: auto;
    padding: 0.7rem 1rem;

    color: #fff;
    background: #7d2ae8;
    border: 2px solid #7d2ae8;
    border-radius: 10px;

    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;

    transition: 0.3s;
}

.privacy-policy-download:hover {
    color: #c69af7;
    background: transparent;
}

.privacy-policy-help {
    margin-top: 2rem;
    color: #aaa;
    font-size: 0.85rem;
}

.privacy-policy-help a {
    color: #c69af7;
    text-decoration: none;
}

.privacy-policy-help a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .privacy-policy-main {
        padding-top: calc(var(--header-height) + 2.5rem);
    }

    .privacy-policy-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .privacy-policy-card {
        flex-direction: column;
    }

    .privacy-policy-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }

    .privacy-policy-download {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (hover: none) {
    .privacy-policy-card:hover {
        transform: none;
    }
}