/* Legal Pages Styles */
.legal-page {
    padding: 60px 20px;
    background: #fff;
    min-height: calc(100vh - 200px);
}

.legal-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0a609c;
    text-align: center;
    margin-bottom: 10px;
}

.legal-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0a609c;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin: 20px 0 10px;
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-section strong {
    color: #333;
}

/* Logo link style for legal pages */
a.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

a.logo:hover .logo-text {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 15px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
}
