.privacy-section {
    background: #f9f9f9;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.privacy-content h1 {
    color: #1565c0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: #1565c0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.privacy-content h3 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.privacy-content a {
    color: #1565c0;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.highlight-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #1565c0;
}

.highlight-box-blue {
    margin-top: 3rem;
    padding: 2rem;
    background: #e3f2fd;
    border-radius: 8px;
}

.highlight-box-blue h3 {
    color: #1565c0;
    margin-top: 0;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }

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

    .privacy-content h2 {
        font-size: 1.5rem;
    }
    .privacy-section {
        padding: 2rem 0.8rem;
    }
}