/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-card {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.legal-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.legal-card a {
    color: var(--accent);
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}


/* ============================================
   CHECKBOX LEGAL LINKS
   ============================================ */

.checkbox-group a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    display: inline-block;
}


/* Subtle underline effect */
.checkbox-group a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .checkbox-group a:hover {
        color: #ffe066;
    }

    .checkbox-group a:hover::after {
        opacity: 1;
    }
}
