/* legal.css */
.legal-wrapper {
    background-color: var(--bg-light);
    padding: 60px 5%;
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-container h1 {
    color: var(--mjd-blue-dark);
    font-size: 36px;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--mjd-blue-main);
    padding-bottom: 15px;
    font-weight: 800;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--mjd-blue-dark);
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.legal-section a {
    color: var(--mjd-blue-main);
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }
}