.section-privacy {
    padding: 6rem 0;
    margin-top: 4rem;
}

.privacy-wrapper {
    background: var(--card-background);
    border-radius: 15px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.privacy-content {
    font-size: 1rem;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--accent-color);
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 1rem;
}

.privacy-content ul {
    padding-left: 2rem;
}

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

.privacy-toc {
    background: rgba(var(--primary-color-rgb), 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.privacy-toc h3 {
    margin-top: 0;
}

.privacy-toc ul {
    margin-bottom: 0;
}

.privacy-toc a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-toc a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.updated-date {
    font-style: italic;
    text-align: right;
    margin-top: 2rem;
    opacity: 0.7;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}