/* TAHD public content cleanup styles */

.content-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(6,43,85,.04);
    padding: 28px;
    margin-bottom: 24px;
}

.content-panel h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    margin-bottom: 14px;
}

.content-panel h3 {
    margin-top: 22px;
}

.content-panel p {
    color: var(--muted);
    margin: 10px 0 0;
}

.content-panel ul {
    margin: 14px 0 0;
    padding-left: 21px;
    color: #40516b;
}

.content-panel li {
    margin: 7px 0;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.example-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(6,43,85,.04);
}

.example-card h3 {
    margin-bottom: 10px;
}

.example-card p {
    color: var(--muted);
    margin: 0 0 12px;
}

.example-card ul {
    margin: 0;
    padding-left: 19px;
    color: #40516b;
}

.example-card li {
    margin: 6px 0;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.price-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.55rem;
    margin: 10px 0;
}

.price-card ul {
    margin: 14px 0 0;
    padding-left: 19px;
    color: #40516b;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}

.process-step {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: var(--soft);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    margin-bottom: 12px;
}

.process-step h3 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--muted);
    margin: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-detail {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: #fff;
}

.service-detail p {
    color: var(--muted);
    margin: 10px 0 0;
}

.service-detail .card-link {
    display: inline-flex;
    margin-top: 14px;
}

.notice-box {
    border-left: 4px solid var(--teal);
    background: var(--soft-2);
    padding: 18px 20px;
    border-radius: 14px;
    color: #40516b;
    margin: 22px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    margin-top: 28px;
}

.legal-content p,
.legal-content li {
    color: #40516b;
}

@media (max-width: 900px) {
    .example-grid,
    .price-grid,
    .process-list,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .content-panel,
    .example-card,
    .price-card,
    .service-detail {
        padding: 20px;
    }
}
