body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    color: #00796B; /* Teal like your app theme */
    font-size: 2.5em;
}

header h2 {
    margin: 5px 0;
    color: #555;
    font-size: 1.8em;
}

header p {
    font-size: 0.9em;
    color: #777;
}

section {
    margin-bottom: 20px;
}

section h3 {
    color: #00796B; /* Teal */
    border-bottom: 2px solid #00796B;
    padding-bottom: 5px;
    margin-top: 30px; /* More space above section titles */
    margin-bottom: 15px;
    font-size: 1.4em;
}

p {
    margin-bottom: 10px;
    text-align: justify;
}

strong {
    font-weight: bold;
    color: #D32F2F; /* A contrasting color for emphasis in disclaimers */
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    header h1 {
        font-size: 2em;
    }
    header h2 {
        font-size: 1.5em;
    }
    section h3 {
        font-size: 1.2em;
    }
}