/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #1b2a39, #23354a);
    color: #f1f1f1;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Policy Container */
.container {
    max-width: 800px;
    margin: 100px auto;
    padding: 30px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Heading Styling */
h1 {
    text-align: center;
    color: #1b2a39;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
}

/* Paragraph Styling */
p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* List Styling */
ul {
    list-style-type: disc;
    margin: 10px 0 20px 40px;
}

ul li {
    margin-bottom: 10px;
}

/* Links Styling */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Footer Link */
footer {
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: #1b2a39;
    font-weight: bold;
}

footer a:hover {
    color: #007BFF;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}
