/* Apply Futura LT Home Medium to all elements */
* {
    font-family: 'Futura LT Home Medium', sans-serif;
}

.privacy-container {
    max-width: 800px; /* Limiting the width for better readability */
    margin: 20px auto; /* Centering the container with margin */
    padding: 39px; /* Padding inside the container */
    background-color: #fff; /* White background for contrast */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 6px 20px rgba(0,0,0,0.19); /* Enhanced shadows for more pop */
    border-radius: 8px; /* Rounded corners */
}

.privacy-container h1, .privacy-container h2 {
    color: #333; /* Dark grey color for headers */
}

.privacy-container p, .privacy-container ul {
    color: #666; /* Lighter text for readability */
    line-height: 1.6; /* Increased line height for better readability */
}

.privacy-container ul {
    padding-left: 20px; /* Proper indentation for list */
}

.privacy-container li {
    margin-bottom: 10px; /* Space between list items */
}

@media screen and (max-width: 600px) {
    .privacy-container {
        max-width: 100%;
        margin: 10px;
        padding: 20px;
    }

    .privacy-container h1 {
        font-size: 24px;
    }

    .privacy-container h2 {
        font-size: 20px;
    }

    .privacy-container p, .privacy-container ul {
        font-size: 14px;
    }

    .privacy-container ul {
        padding-left: 15px;
    }

    .privacy-container li {
        margin-bottom: 8px;
    }
}
