/* Policy Page Specific Styles */

.policy-content {
    max-width: 900px; /* Wider for text content */
    margin: 40px auto;
    padding: 30px 40px;
    background-color: rgba(26, 31, 36, 0.75); /* Use a subtle background */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: left; /* Ensure text aligns left */
}
.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 2.2rem;
}
 .policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--highlight-color);
 }
 .policy-content hr {
     border: none;
     height: 1px;
     background-color: var(--border-color);
     margin: 30px 0;
 }
 .policy-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    padding-left: 5px;
 }
 .policy-content li {
     margin-bottom: 8px;
     line-height: 1.7;
 }
 .policy-content p {
     line-height: 1.7;
     margin-bottom: 1em;
 } 