/* 
 * Chef.my Privacy Policy Page CSS
 * Simplified version based on current site design
 */

/* Variables matching Chef.my logo colors */
:root {
    --chef-orange: #f4821f;
    --chef-dark: #1e2022;
    --chef-beige: #f2e8d5;
}

/* Make sure basic elements aren't affected by layout changes */
#mobile-menu {
    display: none;
}

#mobile-menu.hidden {
    display: none;
}

/* General layout for privacy policy page */
.privacy-page {
    background-color: var(--chef-beige);
    
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Privacy policy specific elements */
.privacy-page .page-title {
    font-size: 32px;
    color: var(--chef-dark);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 0 20px;
}

.privacy-page .last-updated {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    padding: 0 20px;
}

/* Main content */
.privacy-page .main-content {
    background-color: white;
    border-radius: 5px;
    padding: 30px 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-page section {
    margin-bottom: 40px;
}

.privacy-page h2 {
    color: var(--chef-dark);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--chef-orange);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: bold;
}

.privacy-page h3 {
    color: var(--chef-dark);
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.privacy-page p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.privacy-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-page li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.privacy-page strong {
    color: var(--chef-dark);
    font-weight: bold;
}

.privacy-page .contact-box {
    background-color: var(--chef-beige);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .privacy-page {
        padding: 15px;
    }
    
    .privacy-page .page-title,
    .privacy-page .last-updated {
        padding: 0 5px;
    }
    
    .privacy-page .main-content {
        padding: 20px;
    }
}

/* Print styles */
@media print {
    .sidebar {
        display: none;
    }
    
    .main-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}