body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.policy-title {
    color: #0044cc;
    text-align: center;
    font-size: 2em;
}
.policy-subtitle {
    color: #007bff;
    margin-top: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    font-size: 1.5em;
}
.policy-list {
    list-style: none;
    padding-left: 0;
}
.policy-list li {
    background: #e3f2fd;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.policy-list li::before {
    content: "\2022";
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}
.policy-list li:hover {
    background: #bbdefb;
}
.policy-text {
    line-height: 1.6;
}
.policy-highlight {
    font-weight: bold;
    color: #d32f2f;
}
