body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.policy-header {
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.policy-header h1 {
    color: #0056b3;
    margin-bottom: 10px;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
}

.policy-content section {
    margin-bottom: 30px;
}

h2 {
    color: #007bff;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-top: 25px;
}

h3 {
    color: #343a40;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

address {
    font-style: normal;
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-container {
        margin: 20px;
        padding: 20px;
    }
    .policy-header h1 {
        font-size: 1.5rem;
    }
}