/* Privacy Policy Page Styles */
.privacy-policy-page {
    padding: 40px 0;
    min-height: 100vh;
    background: #fdfeff;
    font-family: 'Source Sans 3', 'Source Sans', Arial, sans-serif;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.privacy-header h1 {
    color: #35707e;
    font-size: 2.2em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.last-updated {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
    margin: 0;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

.privacy-section h2 {
    color: #35707e;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #35707e;
}

.privacy-section h3 {
    color: #35707e;
    font-size: 1.2em;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    color: #111;
    line-height: 1.6;
    margin: 0 0 15px 0;
    text-align: justify;
}

.privacy-section ul {
    color: #111;
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 0;
    list-style-position: inside;
}

.privacy-section li {
    margin: 8px 0;
    text-align: justify;
}

.privacy-section li strong {
    color: #35707e;
    font-weight: 600;
}

.contact-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #35707e;
    margin: 20px 0;
}

.contact-info p {
    margin: 5px 0;
    color: #111;
}

.privacy-footer {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background: #35707e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: #2a5861;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 20px 0;
    }
    
    .privacy-content {
        padding: 20px;
        margin: 0 10px 20px 10px;
    }
    
    .privacy-header {
        margin: 0 10px 20px 10px;
        padding: 30px 20px;
    }
    
    .privacy-header h1 {
        font-size: 1.8em;
    }
    
    .privacy-section h2 {
        font-size: 1.3em;
    }
    
    .privacy-section h3 {
        font-size: 1.1em;
    }
    
    .privacy-section p,
    .privacy-section ul {
        text-align: left;
        font-size: 0.95em;
    }
    
    .contact-info {
        padding: 15px;
    }
}
