* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body styles are now handled in the HTML file for theme support */

/* Header styles are now handled in the HTML file for theme support */

/* Layout styles are now handled in the HTML file */

/* Content specific styles */
.privacy_policy_docs {
    margin-top: 20px;
    text-align: left;
    line-height: 1.6;
}

/* Responsive design improvements */
@media (max-width: 768px) {
    .navbar {
        display: none; /* Hide on mobile, could implement hamburger menu */
    }
    
    .privacy-content {
        padding: 10px;
    }
    
    main {
        padding: 20px 10px;
    }
    
    header {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    #logo {
        height: 30px;
    }
    
    .lang img, .theme img {
        width: 16px;
        height: 16px;
    }
    
    .title, h1 {
        font-size: 22px !important;
    }
    
    .body_text, .subtitle {
        font-size: 14px !important;
    }
}