.privacy-policy-entire-page * {
    font-family: 'Roboto' !important;
    word-break: normal !important;
    hyphens: none !important;
    box-sizing: border-box; 
}

.privacy-policy-header {
    background: #004C97;
    /* Using a placeholder image for demonstration. Replace with your actual SVG path. */
    background-image: url('/drupal/sites/default/files/2025-04/mdr-background-mask_0.svg');
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the background image */
    padding: 30px 0; /* Default padding for larger screens */
    min-height: 200px; /* Minimum height for the header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Container for content within the header, ensuring max-width and horizontal centering */
.privacy-policy-container {
    width: 100%;
    max-width: 1400px; /* Maximum width for the container */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Horizontal padding for the container */
}

/* Styling for the main heading within the header */
.privacy-policy-container h1 {
    font-size: clamp(36px, 8vw, 64px); /* Responsive font size: min 36px, max 64px, scales with viewport width */
    line-height: 1.2; /* Adjusted line height for better readability on all screens */
    font-weight: 900;
    color: #fff !important;
    margin: 0;
    padding: 0 15px;
    text-align: center;
}

/* Main content container styling: padding, margin, max-width */
.privacy-policy-content-container {
    padding: 50px; /* Default padding for larger screens */
    margin: 40px auto 90px auto; /* Top margin, horizontal centering, bottom margin */
    max-width: 1440px; /* Maximum width for the content container */
    background-color: #ffffff; /* White background for the content area */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

/* Paragraph text styling */
.privacy-policy-entire-page p {
    font-size: clamp(15px, 2.5vw, 16px) !important; /* Responsive font size for paragraphs */
    font-weight: 400;
    line-height: 1.6; /* Increased line height for better readability */
    margin-top: 15px; /* Adjusted top margin */
    margin-bottom: 15px; /* Adjusted bottom margin */
    color: #343741 !important;
}

/* Heading 4 styling */
.privacy-policy-entire-page h4 {
    margin-top: 30px; /* Adjusted top margin for headings */
    margin-bottom: 20px;
    font-size: clamp(20px, 4vw, 24px); /* Responsive font size for h4 */
    font-weight: bold;
    color: #343741 !important;
}

/* List item styling */
.privacy-policy-entire-page li {
    font-size: clamp(15px, 2.5vw, 16px); /* Responsive font size for list items */
    font-weight: 400;
    line-height: 1.6; /* Increased line height for better readability */
    color: #343741 !important;
    margin-bottom: 8px; /* Space between list items */
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .privacy-policy-header {
        padding: 20px 0; /* Reduce header padding on smaller screens */
        min-height: 150px; /* Slightly reduce min-height */
    }

    .privacy-policy-container h1 {
        padding: 0 10px; /* Reduce horizontal padding for h1 */
    }

    .privacy-policy-content-container {
        padding: 25px; /* Reduce content container padding on smaller screens */
        margin: 20px auto 50px auto; /* Adjust margins */
    }

    .privacy-policy-entire-page p {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .privacy-policy-entire-page h4 {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .privacy-policy-entire-page li {
        margin-bottom: 5px;
    }
}

/* Media queries for very small screens (e.g., mobile phones) */
@media (max-width: 480px) {
    .privacy-policy-header {
        min-height: 120px; /* Further reduce min-height for very small screens */
    }

    .privacy-policy-container {
        padding: 0 15px; /* Reduce horizontal padding for the main container */
    }

    .privacy-policy-content-container {
        padding: 15px; /* Further reduce content container padding */
        margin: 15px auto 30px auto; /* Further adjust margins */
    }
}
