/* Privacy Policy Page Styles */

.privacy-header {
    background: var(--gradient-dark);
    padding-bottom: 40px;
}

.privacy-content {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.privacy-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.privacy-card h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section li {
    color: var(--text-light);
    padding: 8px 0;
    padding-right: 24px;
    position: relative;
    line-height: 1.6;
}

.privacy-section li::before {
    content: "•";
    position: absolute;
    right: 8px;
    color: var(--primary);
    font-weight: bold;
}

.privacy-section a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info li::before {
    display: none;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 20px;
    }

    .privacy-card h1 {
        font-size: 1.75rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}