body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 5px;
}

header p {
    color: #666;
    margin: 0;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5rem;
    color: #D94C65; /* Using your app's accent color */
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #D94C65;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        margin: 20px;
        padding: 20px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}