/* Legal Pages Styling */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
    text-align: left;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #000;
}

.legal-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000;
}

.legal-text p {
    margin-bottom: 16px;
}

.legal-text strong {
    font-weight: 600;
    color: #000;
}

.legal-text a {
    color: #000;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.legal-text a:hover {
    opacity: 0.7;
}

/* Improve spacing for contact information blocks */
.legal-text p + p {
    margin-top: 16px;
}

/* Special formatting for address blocks */
.legal-text p strong + br {
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .legal-content {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }

    .legal-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .legal-text {
        font-size: 0.95rem;
    }

    .legal-text h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .legal-text h3 {
        font-size: 1.05rem;
    }
}
