
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

.container {
    width: 90%;
    max-width: 800px;
    background-color: #FAFAFA;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #2196F3;
}

header h1 {
    font-size: 2.5em;
    color: #0D47A1;
}

header p {
    font-size: 0.9em;
    color: #555555;
}

.policy-details h2 {
    font-size: 1.5em;
    color: #1565C0;
    border-bottom: 2px solid #1565C0;
    padding-bottom: 4px;
    margin-top: 30px;
}

.policy-details p, .policy-details ul {
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 20px;
}

.policy-details ul {
    padding-left: 25px;
}

.policy-details ul li {
    margin-bottom: 8px;
}

a {
    color: #0D47A1;
    transition: color 0.3s ease;
}

a:hover {
    color: #1976D2;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #BDBDBD;
    margin-top: 30px;
}

footer p {
    font-size: 0.9em;
    color: #888888;
}

footer a {
    color: #1565C0;
}

footer a:hover {
    color: #0D47A1;
}
