/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main Container */
.privacy-container {
    background: #fff;
    max-width: 800px;
    padding: 2rem;
    margin: 2rem 1rem; /* Adds flexibility for smaller devices */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
}

/* Headings */
h1 {
    color: #2575fc;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* Centers the main heading */
}

h2 {
    color: #555;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

/* Paragraphs */
p {
    margin: 1rem 0;
    text-align: justify;
    font-size: 1rem; /* Standard font size for readability */
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

ul li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Links */
a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #1b5fcc;
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem;
        margin: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, ul li {
        font-size: 0.95rem; /* Slightly smaller font for compact devices */
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem;
        margin: 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p, ul li {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.85rem;
    }
}
