/* local_legal – content styles */
.local-legal-content {
    max-width: 820px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 20px rgba(44,31,20,.15);
}
.local-legal-content h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c1f14;
    margin-bottom: 1.75rem;
    padding-bottom: .85rem;
    border-bottom: 2px solid #e0c090;
}
.local-legal-content h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4a3728;
    margin: 1.6rem 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.local-legal-content h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #4a3728;
    margin: 1.1rem 0 .3rem;
}
.local-legal-content p {
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: .6rem;
}
.local-legal-content ul,
.local-legal-content ol {
    font-size: .95rem;
    line-height: 1.75;
    margin: .3rem 0 .6rem 1.4rem;
}
.local-legal-content li { margin-bottom: .2rem; }
.local-legal-content a { color: #9e774d; font-weight: 600; }
.local-legal-content a:hover { color: #4a3728; }
.local-legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: .6rem 0 1rem;
    font-size: .92rem;
}
.local-legal-content th {
    background: #4a3728;
    color: #e0c090;
    padding: .5rem .75rem;
    text-align: left;
}
.local-legal-content td {
    padding: .5rem .75rem;
    border-bottom: 1px solid #d9cfc4;
}
.local-legal-content tr:last-child td { border-bottom: none; }
.local-legal-content hr {
    border: none;
    border-top: 1px solid #d9cfc4;
    margin: 1.25rem 0;
}
.local-legal-nav {
    max-width: 820px;
    margin: 1rem auto 0;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    padding: 0 .25rem;
}
.local-legal-nav a {
    font-size: .85rem;
    color: #9e774d;
    text-decoration: none;
    font-weight: 600;
}
.local-legal-nav a:hover { color: #4a3728; }
.local-legal-nav a.active { color: #4a3728; text-decoration: underline; }
/* FAQ accordion */
.local-legal-content .faq-section-title {
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9e774d;
    margin: 2rem 0 .75rem;
    border-bottom: 1px solid #e8ddd0;
    padding-bottom: .4rem;
}
.local-legal-content .faq-item {
    border: 1px solid #e0d4c4;
    border-radius: 8px;
    margin-bottom: .6rem;
    overflow: hidden;
}
.local-legal-content .faq-btn {
    width: 100%;
    background: #faf5ee;
    border: none;
    text-align: left;
    padding: .85rem 1.1rem;
    font-size: .97rem;
    font-weight: 600;
    color: #2c1f14;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}
.local-legal-content .faq-btn:hover { background: #f3ece0; }
.local-legal-content .faq-arrow {
    font-size: .8rem;
    color: #9e774d;
    transition: transform .2s;
    flex-shrink: 0;
}
.local-legal-content .faq-btn.open .faq-arrow { transform: rotate(180deg); }
.local-legal-content .faq-answer {
    display: none;
    padding: .85rem 1.1rem 1rem;
    font-size: .93rem;
    color: #4a3728;
    line-height: 1.7;
    background: #fff;
    border-top: 1px solid #e8ddd0;
}
.local-legal-content .faq-answer p { margin-bottom: .4rem; }
.local-legal-content .faq-answer.open { display: block; }
@media (max-width: 600px) {
    .local-legal-content { padding: 1.5rem 1.25rem; }
}
