/* ===== Shared styles for legal pages (Privacy, Terms, Returns & Refunds) ===== */

#mh-legal-wrapper {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mh-legal-container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Typography */
.mh-legal-title {
    font-size: 2.2rem;
    color: #2c3e50;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.mh-legal-section-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.mh-legal-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Lists — <ul> stays disc, <ol> stays decimal (no list-style override) */
.mh-legal-list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.mh-legal-list li {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

.mh-legal-sublist {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* Links */
.mh-legal-link {
    color: #007bff;
    text-decoration: none;
}

.mh-legal-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .mh-legal-container {
        padding: 20px;
    }

    .mh-legal-title {
        font-size: 1.8rem;
    }

    .mh-legal-section-title {
        font-size: 1.4rem;
    }
}
