/* Privacy Policy Specific Styles */
.privacy-content {
    padding-top: 120px;
    padding-bottom: 60px;
    background: #f8fafc;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
}

.privacy-intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border-left: 4px solid #7C3AED;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.privacy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.privacy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #7C3AED;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: #374151;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.privacy-section li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.subsection {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #7C3AED;
}

.contact-info {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .privacy-intro p {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

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

    .subsection {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding-top: 160px;
    }

    .privacy-header {
        padding: 1rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .privacy-intro {
        padding: 1rem;
    }

    .privacy-section {
        padding: 1rem;
    }

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

    .subsection {
        padding: 0.5rem;
    }

    .contact-info {
        padding: 0.75rem;
    }
}