/* Base and Common Styles from gov.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #0066cc;
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Page Specific Styles */
.page-header {
    border-bottom: 2px solid #99ccff;
    color: #0066cc;
    text-align: center;
    padding: 25px 30px;
    margin: 20px auto;
    width: 100%;
}

.breadcrumb {
    font-size: 14px;
    color: #0066cc;
}

.terms-content {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.terms-intro {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(77, 148, 255, 0.1);
    margin-bottom: 30px;
}

.terms-intro h2 {
    color: #0066cc;
    margin-bottom: 15px;
}

.terms-sections {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(77, 148, 255, 0.1);
}

.terms-section {
    margin-bottom: 25px;
}

.terms-section h2 {
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.terms-section p {
    margin-bottom: 10px;
}

.terms-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.terms-section li {
    margin-bottom: 8px;
}