/* Custom styles replacing Bootstrap */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container styles */
.privacy-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

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

.privacy-header h5 {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content styles */
.privacy-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #444;
}

/* Footer styles */
.privacy-footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
}

.privacy-footer h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-header h3 {
        font-size: 1.75rem;
    }
    
    .privacy-header h5 {
        font-size: 1.1rem;
    }
}