.subhero {
    background: var(--white);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid #eee;
}

.subhero p {
    max-width: 760px;
    color: var(--text-light);
    margin-bottom: 0;
}

.page-section {
    padding: 3.5rem 0;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.info-card p,
.info-card li {
    color: var(--text-light);
}

.info-list {
    list-style: disc;
    padding-left: 1.2rem;
}

.info-list li {
    margin-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.price-table th {
    background: #f8f9ff;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.price-tag {
    font-weight: 700;
    color: var(--success);
    white-space: nowrap;
}

.legal-box {
    background: var(--white);
    border: 1px solid #eee;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.legal-box h3 {
    margin-bottom: 0.6rem;
}

.muted-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.92rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.contact-list li:last-child {
    border-bottom: none;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d8dbe3;
    border-radius: 8px;
    padding: 0.7rem 0.8rem;
    font: inherit;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.status-msg {
    display: none;
    margin-top: 1rem;
    border-radius: 8px;
    padding: 0.75rem 0.85rem;
    font-size: 0.92rem;
}

.status-msg.success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: #1e7a46;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.small-pill {
    display: inline-block;
    border-radius: 50px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (max-width: 860px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .price-table {
        font-size: 0.92rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem;
    }
}

.blog-meta {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.guide-format {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
}

.price-row-highlight {
    background: rgba(102, 126, 234, 0.04);
    border-left: 3px solid var(--primary);
}