.body{
    height: 100%;
    width: 75%;
    position: relative;
    left: 24%;
    top: 85px;
  
}

 /* ========================================
        CSS STYLES FOR PRIVACY POLICY CONTENT
        ========================================
        */
        
        /* --- Base Styling --- */
        #privacy-policy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: Arial, sans-serif;
            line-height: 1.8;
            color: #333;
        }

        #privacy-policy-content h1 {
            font-size: 2.5em;
            color: #0056b3; /* Primary Blue */
            margin-bottom: 5px;
            text-align: center;
        }

        #privacy-policy-content .last-updated {
            display: block;
            text-align: center;
            font-size: 0.9em;
            color: #666;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        /* --- Section Headings --- */
        #privacy-policy-content h2 {
            font-size: 1.2em;
            color: #333;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #0056b3; /* Underline for main sections */
        }

        #privacy-policy-content h3 {
            font-size: 1.2em;
            color: #0056b3;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        /* --- Lists and Paragraphs --- */
        #privacy-policy-content p, 
        #privacy-policy-content ul, 
        #privacy-policy-content ol {
            margin-bottom: 15px;
            font-size: 1em;
        }

        #privacy-policy-content ul {
            list-style: disc;
            padding-left: 20px;
        }

        /* --- Table Styling for Clarity --- */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .data-table th, .data-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
            font-size: 0.95em;
        }

        .data-table th {
            background-color: #f0f8ff; /* Light background for headers */
            color: #0056b3;
            font-weight: bold;
        }

        /* --- Contact Section --- */
        .contact-details {
            padding: 20px;
            background-color: #f8f8f8;
            border-left: 5px solid #ffc107; /* Accent color */
            margin-top: 30px;
        }

        .contact-details strong {
            display: inline-block;
            min-width: 100px;
            color: #0056b3;
        }

        /* --- Responsive Adjustments --- */



@media (max-width: 900px) {

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;

     #privacy-policy-content {
                padding: 20px 10px;
            }
            #privacy-policy-content h1 {
                font-size: 1.5rem;
            }
            .data-table, .data-table tbody, .data-table tr, .data-table td {
                display: block;
                width: 100%;
            }
            .data-table thead {
                display: none; /* Hide header on small screens */
            }
            .data-table tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
            }
            .data-table td {
                padding-left: 50%;
                position: relative;
            }
            .data-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
                color: #555;
            }
  
}
  
}


@media (min-width: 766px) and (max-width: 1024px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}
}

