/* Legal Pages Styling */

.legal-page {
    padding: 100px 0 60px;
    min-height: 100vh;
    background: #ffffff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 60px;
}

.legal-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: left;
}

.effective-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: normal;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 20px;
    line-height: 1.4;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    margin: 12px 0 12px 25px;
    padding: 0;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 8px;
}

.legal-section strong {
    font-weight: 700;
    color: #000000;
}

.legal-section a {
    color: #0066cc;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 80px 0 40px;
    }

    .legal-content {
        padding: 30px 25px;
    }

    .legal-content h1 {
        font-size: 24px;
    }

    .legal-section h2 {
        font-size: 17px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 25px 20px;
    }

    .legal-content h1 {
        font-size: 22px;
    }

    .legal-section h2 {
        font-size: 16px;
    }

    .legal-section ul,
    .legal-section ol {
        margin-left: 20px;
    }
}
