/* General container for all legal pages */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
}

/* Main headings */
.legal-page h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #0077b6;
    border-bottom: 2px solid #555; /* matches your site color */
    padding-bottom: 0.3rem;
}

/* Sub-headings */
.legal-page .sub-heading {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: #0077b6; /* another brand color */
}

/* Last updated text */
.legal-page #update {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Paragraphs */
.legal-page p {
    margin-bottom: 1rem;
}

/* Lists */
.legal-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.6rem;
}

/* Links */
.legal-page a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px dotted #555;
    transition: color 0.2s, border-color 0.2s;
}

.legal-page a:hover {
    color: #0077b6;
    border-color: #0077b6;
}
