/* ============================
   LEGAL PAGES – MINIMAL STYLE
   ReligionsRank
============================ */

/* Page Wrapper */
.legal-page {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 120px;
    padding: 0 20px;
}

/* Header (Back + Title) */
.legal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c1c1c;
}

/* Back Button */
.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f2f4f8;
    color: #259FF0;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.back-btn:hover {
    background: #259FF0;
    color: #fff;
    transform: translateX(-3px);
}

/* Content Area */
.legal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Paragraphs */
.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Section Titles */
.legal-content h2 {
    font-size: 1.35rem;
    margin: 35px 0 12px;
    font-weight: 700;
    color: #259FF0;
}

/* Lists */
.legal-content ul {
    margin: 10px 0 25px 20px;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

/* Links */
.legal-content a {
    color: #259FF0;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Emphasis */
.legal-content strong {
    color: #1c1c1c;
    font-weight: 700;
}

/* Divider Look */
.legal-content h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #259FF0, #3b3ce3);
    border-radius: 2px;
    margin-top: 6px;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        margin-top: 40px;
    }

    .legal-header h1 {
        font-size: 1.6rem;
    }

    .back-btn {
        width: 40px;
        height: 40px;
    }
}
