/* Privacy Policy Specific Styles */

.privacy-content-section {
    padding: 6rem 2rem;
    background: white;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.privacy-section {
    margin-bottom: 4rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    position: relative;
}

.privacy-section li::marker {
    color: var(--primary-color);
}

.privacy-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.privacy-table th,
.privacy-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
}

.privacy-table td {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-footer-info {
    margin-top: 5rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.privacy-footer-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.privacy-footer-info p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.privacy-footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-footer-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.updated-date {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 3rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content-section {
        padding: 4rem 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-table {
        font-size: 0.9rem;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 1rem;
    }
}