.privacy-page {
    background: #000;
    color: #fff;
    padding: calc(var(--header-height) + 2rem) 7rem 4rem;
    min-height: 100vh;
}

.privacy-page-inner {
    max-width: 1260px;
    margin: 0 auto;
}

.privacy-page-title {
    font-family: 'Decimal', 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
}

.privacy-content {
    color: #d6d6d6;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
}

.privacy-content p {
    margin-bottom: 1.2rem;
}

.privacy-content ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.privacy-content li {
    margin-bottom: 0.4rem;
}

.privacy-content strong {
    color: #fff;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.privacy-content a {
    color: var(--color-violet);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-content a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .privacy-page {
        padding: calc(var(--header-height) + 1.2rem) 1rem 2.4rem;
    }
}
