.privacy-page-wrapper {
    background-color: #fff;
    /* Clean white bg for reading */
    min-height: 100vh;
}

.privacy-container {
    max-width: 800px !important;
    /* Optimal reading width */
    padding-top: 60px;
    padding-bottom: 100px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.privacy-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.privacy-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.privacy-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.privacy-content section {
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.info-box {
    background: #F5F5F7;
    padding: 24px;
    border-radius: 16px;
    margin: 32px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-box p {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
}

.divider {
    border: 0;
    height: 1px;
    background: #E5E5E5;
    margin: 60px 0;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 16px;
    display: block;
}

.note {
    font-style: italic;
    color: var(--text-secondary);
    margin: 20px 0;
    padding-left: 16px;
    border-left: 3px solid var(--primary-blue);
}

.contact-placeholder {
    background: #FFF8E1;
    /* Warning/Provisional color slightly yellow/orange */
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #B7791F;
    border: 1px solid #FBD38D;
}

.contact-placeholder i {
    font-size: 1.5rem;
}

.contact-placeholder p {
    margin: 0;
    font-weight: 500;
}

.authority-box {
    background: #F5F5F7;
    padding: 24px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.right-card {
    background: white;
    border: 1px solid #E5E5E5;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.right-card:hover {
    border-color: #d1d1d6;
    transform: translateY(-2px);
}

.right-card h4 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.right-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-container {
        padding: 40px 20px;
    }
}