/* Privacy Policy Page Styles */

.legal-page .page-header {
    background-color: var(--forest-green);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.legal-page .page-header h1 {
    color: var(--deep-gold);
    font-size: 48px;
    margin-bottom: 10px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legal-text h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 10px;
    position: relative;
}

.legal-text li::before {
    content: '•';
    color: var(--deep-gold);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}
