/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1, h2 {
    color: #003366;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Privacy policy section */
.privacy-policy {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header section */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1rem;
    color: #666;
}

/* Article section for the policy details */
article {
    font-size: 1.1rem;
    line-height: 1.8;
}

article ul {
    list-style-type: disc;
    margin-left: 20px;
}

article ul li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    article {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 15px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    article h2 {
        font-size: 1.3rem;
    }
}
