:root {
    --pv-orange: #f05b37;
    --pv-orange-dark: #df4d2c;
    --pv-purple: #7032b8;
    --pv-purple-dark: #55229b;
    --pv-text: #5f6368;
    --pv-title: #6030ad;
    --pv-muted: #85878c;
    --pv-line: #ececf1;
    --pv-soft: #f7f7f9;
    --pv-white: #ffffff;
    --pv-danger: #c62828;
    --pv-radius: 22px;
    --pv-shadow: 0 18px 55px rgba(70, 41, 117, .12);
    font-family: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--pv-text);
    background:
        radial-gradient(circle at top left, rgba(240, 91, 55, .10), transparent 34rem),
        radial-gradient(circle at top right, rgba(112, 50, 184, .10), transparent 36rem),
        #f5f4f8;
}

a { color: var(--pv-purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.pv-page {
    min-height: 100vh;
    padding: 28px 16px;
}

.pv-page-center {
    display: grid;
    place-items: center;
}

.pv-sheet {
    width: min(100%, 890px);
    margin: 0 auto;
    padding: 28px 38px 34px;
    background: var(--pv-white);
    border-radius: 28px;
    box-shadow: var(--pv-shadow);
}

.pv-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    min-height: 78px;
}

.pv-brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.pv-brand-centered { justify-content: center; }

.pv-brand-mark {
    width: 52px;
    height: 52px;
    border: 4px solid var(--pv-orange);
    border-bottom-color: var(--pv-purple);
    color: var(--pv-orange);
    border-radius: 20px 20px 20px 5px;
    display: grid;
    place-items: center;
    font-size: 34px;
    line-height: 1;
    transform: rotate(-42deg);
}

.pv-brand-mark::first-letter { transform: rotate(42deg); }

.pv-brand-name {
    font-size: clamp(28px, 4vw, 43px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: .9;
}

.pv-brand-name span { color: var(--pv-orange); }
.pv-brand-name strong { color: var(--pv-purple); }

.pv-brand-tagline {
    margin-top: 8px;
    color: #777b82;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 4px;
    text-align: center;
}

.pv-number-box {
    position: absolute;
    right: 10px;
    top: 8px;
    color: #777b82;
    font-weight: 900;
    text-align: left;
    font-size: 14px;
}

.pv-number-box strong {
    display: block;
    margin-top: 6px;
    color: var(--pv-muted);
    font-size: 12px;
    font-weight: 800;
}

.pv-title-wrap {
    width: min(100%, 650px);
    margin: 6px auto -18px;
    border: 4px solid var(--pv-orange);
    border-radius: 19px;
    background: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 12px 18px 10px;
}

.pv-title-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 25px;
    height: 25px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-right: 4px solid var(--pv-orange);
    border-bottom: 4px solid var(--pv-orange);
    border-radius: 0 0 7px 0;
}

.pv-title-wrap h1 {
    margin: 0;
    color: var(--pv-title);
    font-size: clamp(22px, 3vw, 31px);
    font-weight: 900;
    line-height: 1.05;
}

.pv-box {
    border: 4px solid var(--pv-orange);
    border-radius: var(--pv-radius);
    background: #fff;
}

.pv-box-top {
    padding: 58px 38px 26px;
    margin-bottom: 26px;
}

.pv-box-main {
    padding: 30px 38px 28px;
}

.pv-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 21px 16px;
}

.pv-grid-top { align-items: end; }
.pv-span-4 { grid-column: span 4; }
.pv-span-8 { grid-column: span 8; }
.pv-span-full { grid-column: 1 / -1; }

.pv-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.pv-field span,
.pv-login-form span,
.pv-qr-info span,
.pv-detail-grid span {
    color: #696d73;
    font-weight: 800;
}

.pv-field input {
    min-width: 0;
    flex: 1;
    height: 34px;
    border: 0;
    border-bottom: 2px solid #999ca3;
    border-radius: 0;
    color: #45484d;
    font: inherit;
    outline: 0;
    background: #fff;
}

.pv-field input:focus {
    border-bottom-color: var(--pv-purple);
}

.pv-age-field {
    grid-column: span 7;
    max-width: 520px;
}

.pv-age-field input {
    flex: 0 0 120px;
    max-width: 140px;
    text-align: center;
}

.pv-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 58px;
}

.pv-group {
    border: 0;
    padding: 0;
    margin: 0;
}

.pv-group legend {
    margin-bottom: 12px;
    color: #686b71;
    font-size: 17px;
    font-weight: 900;
}

.pv-group label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 10px 0;
    line-height: 1.35;
    color: #72757b;
    font-weight: 650;
}

.pv-group input[type="radio"],
.pv-group input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 18px;
    border: 2px solid #a5a8ad;
    background: #fff;
    display: grid;
    place-items: center;
}

.pv-group input[type="radio"] { border-radius: 50%; }
.pv-group input[type="checkbox"] { border-radius: 0; }

.pv-group input[type="radio"]::after,
.pv-group input[type="checkbox"]::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--pv-purple);
    transform: scale(0);
    transition: transform .12s ease;
}

.pv-group input[type="radio"]::after { border-radius: 50%; }
.pv-group input[type="checkbox"]::after { border-radius: 1px; }
.pv-group input:checked::after { transform: scale(1); }

.pv-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
}

.pv-authority {
    margin-top: 30px;
}

.pv-authority label {
    margin: 9px 0;
}

.pv-observations-row {
    position: relative;
    margin-top: 34px;
}

.pv-observations {
    display: block;
    background: #f0f0f0;
    border-radius: 18px;
    padding: 18px 26px;
    min-height: 102px;
}

.pv-observations span {
    display: block;
    color: #696d73;
    font-weight: 900;
    margin-bottom: 8px;
}

.pv-observations textarea {
    width: 100%;
    min-height: 82px;
    resize: vertical;
    border: 0;
    background: transparent;
    outline: 0;
    color: #45484d;
    font: inherit;
    line-height: 1.45;
}

.pv-note {
    position: absolute;
    right: -42px;
    top: 18px;
    width: 170px;
    min-height: 62px;
    background: var(--pv-orange);
    color: #fff;
    border-radius: 14px 0 0 14px;
    padding: 13px 13px 12px 18px;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 900;
}

.pv-risk-advice {
    margin-top: 16px;
    padding: 12px 14px;
    border-left: 5px solid var(--pv-orange);
    background: #fff4ef;
    color: #71402f;
    border-radius: 10px;
    font-weight: 800;
}

.pv-contact-bar {
    position: relative;
    margin-top: 28px;
    min-height: 52px;
    padding: 13px 22px 12px 26px;
    border-radius: 10px;
    background: #6c33b5;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-size: 13px;
    line-height: 1.28;
    overflow: visible;
}

.pv-contact-label {
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    min-width: 116px;
    padding: 2px 18px 3px;
    border-radius: 999px;
    background: #fff;
    color: var(--pv-purple);
    text-align: center;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 950;
    box-shadow: 0 3px 0 rgba(108, 51, 181, .04);
}

.pv-contact-text {
    flex: 1 1 auto;
    min-width: 245px;
    font-weight: 750;
}

.pv-ministry-lockup {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 205px;
}

.pv-ministry-lockup img {
    display: block;
    width: 218px;
    max-width: 100%;
    height: auto;
}

.pv-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}

.pv-button-primary,
.pv-button-ghost {
    border: 0;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.pv-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-purple));
    box-shadow: 0 12px 24px rgba(112, 50, 184, .22);
}

.pv-button-primary:hover { text-decoration: none; transform: translateY(-1px); }

.pv-button-ghost {
    background: #f3effb;
    color: var(--pv-purple);
}

.pv-admin-link { font-weight: 800; font-size: 14px; color: #777b82; }

.pv-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin: 24px 0 14px;
    font-weight: 700;
}

.pv-alert ul { margin: 8px 0 0 18px; padding: 0; }
.pv-alert-error { background: #fff1f1; color: var(--pv-danger); border: 1px solid #ffd0d0; }

.pv-success-card,
.pv-login-card {
    width: min(100%, 520px);
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--pv-shadow);
    text-align: center;
}

.pv-success-card h1,
.pv-login-card h1,
.pv-admin-hero h1,
.pv-admin-card h1 {
    color: var(--pv-purple);
    margin: 20px 0 8px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.05;
}

.pv-case-code {
    margin: 18px auto;
    padding: 16px 20px;
    border-radius: 16px;
    background: #f4effd;
    color: var(--pv-purple);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: .5px;
}

.pv-success-actions { margin-top: 20px; }

.pv-login-form {
    margin-top: 24px;
    text-align: left;
    display: grid;
    gap: 14px;
}

.pv-login-form label,
.pv-qr-info label {
    display: grid;
    gap: 8px;
}

.pv-login-form input,
.pv-filter-bar input,
.pv-filter-bar select,
.pv-qr-info input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dedde7;
    border-radius: 12px;
    padding: 10px 12px;
    color: #3f4248;
    font: inherit;
    outline: 0;
    background: #fff;
}

.pv-login-form input:focus,
.pv-filter-bar input:focus,
.pv-filter-bar select:focus,
.pv-qr-info input:focus {
    border-color: var(--pv-purple);
    box-shadow: 0 0 0 4px rgba(112, 50, 184, .10);
}

.pv-admin-body { background: #f6f4fa; }

.pv-admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 74px;
    padding: 12px 28px;
    background: #fff;
    border-bottom: 1px solid #e9e6f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(68, 50, 99, .06);
}

.pv-admin-topbar .pv-brand-mark { width: 38px; height: 38px; font-size: 24px; border-width: 3px; border-radius: 14px 14px 14px 4px; }
.pv-admin-topbar .pv-brand-name { font-size: 24px; }
.pv-admin-topbar .pv-brand-tagline { font-size: 7px; letter-spacing: 2.5px; text-align: left; }

.pv-admin-topbar nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pv-admin-topbar nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #656872;
    font-weight: 850;
}

.pv-admin-topbar nav a:hover {
    background: #f4effd;
    color: var(--pv-purple);
    text-decoration: none;
}

.pv-admin-main {
    width: min(100% - 32px, 1180px);
    margin: 30px auto;
}

.pv-admin-hero {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(240, 91, 55, .10), rgba(112, 50, 184, .12)), #fff;
    box-shadow: 0 12px 34px rgba(68, 50, 99, .08);
}

.pv-kicker {
    display: inline-flex;
    color: var(--pv-orange);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 950;
}

.pv-admin-hero h1 { margin-top: 8px; }
.pv-admin-hero p { margin: 0; max-width: 720px; font-weight: 650; }

.pv-stats-grid {
    margin: 18px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pv-stats-grid article {
    background: #fff;
    border: 1px solid #e9e6f0;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(68, 50, 99, .06);
}

.pv-stats-grid span {
    display: block;
    color: #777b82;
    font-weight: 800;
    font-size: 13px;
}

.pv-stats-grid strong {
    display: block;
    color: var(--pv-purple);
    font-size: 34px;
    margin-top: 6px;
}

.pv-admin-card {
    background: #fff;
    border: 1px solid #e9e6f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(68, 50, 99, .08);
}

.pv-filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) minmax(180px, .7fr) 150px 150px auto auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.pv-table-wrap { overflow-x: auto; }

.pv-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.pv-table th {
    text-align: left;
    padding: 13px 12px;
    color: #6c6f77;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid #e7e4ee;
}

.pv-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0eef5;
    vertical-align: top;
    font-weight: 650;
}

.pv-table small { color: #8a8d94; font-weight: 750; }

.pv-empty { text-align: center; color: #8a8d94; padding: 28px !important; }

.pv-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: 12px;
    white-space: nowrap;
}

.pv-badge-moderado { background: #edf8f2; color: #157347; }
.pv-badge-alto { background: #fff3cd; color: #8a5a00; }
.pv-badge-critico { background: #fde2e2; color: #a61d1d; }

.pv-row-action {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4effd;
    color: var(--pv-purple);
    font-weight: 900;
}

.pv-row-action:hover { text-decoration: none; }

.pv-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pv-pagination a {
    min-width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #f4f2f8;
    color: #656872;
    font-weight: 900;
}

.pv-pagination a.active {
    background: var(--pv-purple);
    color: #fff;
}

.pv-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.pv-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pv-detail-grid div {
    background: #f8f7fb;
    border: 1px solid #ece9f3;
    border-radius: 16px;
    padding: 14px;
}

.pv-detail-grid span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7a7d86;
    margin-bottom: 7px;
}

.pv-detail-grid strong {
    color: #3f4248;
    line-height: 1.35;
}

.pv-detail-grid p {
    margin: 0;
    color: #3f4248;
    line-height: 1.55;
    font-weight: 650;
}

.pv-qr-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 24px;
}

.pv-qr-box {
    background: #fff;
    border: 2px dashed #d9d2e8;
    border-radius: 24px;
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 22px;
}

.pv-qr-box img { width: 240px; height: 240px; object-fit: contain; }

.pv-qr-placeholder {
    width: 230px;
    height: 230px;
    border-radius: 18px;
    background: repeating-linear-gradient(45deg, #f4effd, #f4effd 12px, #fff 12px, #fff 24px);
    color: var(--pv-purple);
    display: grid;
    place-items: center;
    font-weight: 950;
}

.pv-qr-info { display: grid; gap: 16px; }

@media (max-width: 840px) {
    .pv-sheet { padding: 22px 16px 26px; }
    .pv-header { justify-content: flex-start; padding-right: 76px; }
    .pv-number-box { right: 0; }
    .pv-box-top, .pv-box-main { padding-left: 20px; padding-right: 20px; }
    .pv-grid, .pv-two-columns, .pv-check-grid, .pv-stats-grid, .pv-detail-grid, .pv-qr-layout { grid-template-columns: 1fr; }
    .pv-span-4, .pv-span-6, .pv-span-8, .pv-age-field { grid-column: 1 / -1; max-width: none; }
    .pv-field { display: grid; gap: 6px; }
    .pv-age-field input { max-width: none; width: 100%; text-align: left; }
    .pv-note { position: static; width: auto; margin-top: 12px; border-radius: 14px; }
    .pv-contact-bar, .pv-actions, .pv-detail-header, .pv-admin-topbar { flex-direction: column; align-items: stretch; }
    .pv-contact-bar { padding-top: 24px; }
    .pv-contact-label { top: -13px; font-size: 15px; }
    .pv-ministry-lockup { justify-content: flex-start; min-width: 0; }
    .pv-ministry-lockup img { width: 230px; }
    .pv-filter-bar { grid-template-columns: 1fr; }
}

@media print {
    body { background: #fff; }
    .pv-admin-topbar, .pv-actions, .pv-filter-bar, .pv-pagination { display: none !important; }
    .pv-admin-main, .pv-sheet { width: 100%; margin: 0; padding: 0; box-shadow: none; }
    .pv-admin-card, .pv-sheet { box-shadow: none; border: 0; }
    .pv-page { padding: 0; }
}

.pv-brand-logo {
    display: block;
    width: min(100%, 430px);
    max-height: 88px;
    object-fit: contain;
}

.pv-admin-topbar .pv-brand-logo {
    width: 230px;
    max-height: 48px;
}

.pv-login-card .pv-brand-logo,
.pv-success-card .pv-brand-logo {
    width: 360px;
    margin: 0 auto;
}

/* =========================================================
   PUNTOS VIDA - Ajustes finales para clonar el formulario físico
   ========================================================= */
.pv-page {
    padding: 28px 18px 34px;
}

.pv-sheet {
    width: min(100%, 1010px);
    padding: 28px 50px 34px;
}

.pv-header {
    min-height: 88px;
}

.pv-brand-logo {
    width: min(100%, 465px);
    max-height: 95px;
}

.pv-number-box {
    right: 18px;
    top: 10px;
}

.pv-title-wrap {
    width: min(100%, 720px);
    margin-top: 2px;
    margin-bottom: -18px;
}

.pv-box-top {
    padding: 60px 46px 30px;
    margin-bottom: 28px;
}

.pv-box-main {
    padding: 34px 46px 34px;
}

.pv-grid {
    gap: 22px 18px;
}

.pv-field span {
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 1.1;
}

.pv-field input {
    height: 32px;
}

.pv-age-field {
    grid-column: 1 / span 7 !important;
    max-width: 560px;
}

.pv-age-field input {
    flex: 0 0 132px;
    max-width: 132px;
    text-align: center;
}

.pv-two-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px 76px;
}

.pv-group legend {
    font-size: 16px;
    margin-bottom: 13px;
}

.pv-group label {
    font-size: 15px;
    line-height: 1.25;
    margin: 10px 0;
}

.pv-check-grid {
    grid-template-columns: minmax(145px, 1fr) minmax(180px, 1fr);
    gap: 0 34px;
}

.pv-check-grid label {
    white-space: nowrap;
}

.pv-authority {
    margin-top: 32px;
}

.pv-authority label {
    font-size: 14.5px;
}

.pv-observations-row {
    margin-top: 34px;
}

.pv-observations {
    min-height: 108px;
}

/* El formulario físico no tiene alerta dinámica separada; la información ya vive en Contactos. */
.pv-risk-advice {
    display: none !important;
}

.pv-contact-bar {
    position: relative;
    width: 100%;
    min-height: 70px;
    margin: 30px auto 0;
    padding: 14px 32px 13px 36px;
    border-radius: 15px;
    background: #7032b8;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(210px, 245px);
    align-items: center;
    column-gap: 28px;
    overflow: visible;
}

.pv-contact-label {
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
    min-width: 150px;
    height: 30px;
    padding: 0 20px 3px;
    border-radius: 0 0 15px 15px;
    background: #fff;
    color: #7032b8;
    text-align: center;
    font-size: 21px;
    line-height: 28px;
    font-weight: 950;
    box-shadow: none;
}

.pv-contact-text {
    min-width: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.13;
    font-weight: 750;
    white-space: nowrap;
}

.pv-contact-text strong {
    color: #fff;
    font-weight: 950;
}

.pv-ministry-lockup {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pv-ministry-lockup img {
    display: block;
    width: auto;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 980px) {
    .pv-sheet {
        width: min(100%, 900px);
        padding-left: 34px;
        padding-right: 34px;
    }

    .pv-box-top,
    .pv-box-main {
        padding-left: 34px;
        padding-right: 34px;
    }

    .pv-two-columns {
        gap: 28px 48px;
    }

    .pv-check-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }

    .pv-contact-bar {
        grid-template-columns: minmax(320px, 1fr) minmax(180px, 210px);
    }

    .pv-contact-text {
        font-size: 15px;
    }

    .pv-ministry-lockup img {
        height: 52px;
    }
}

@media (max-width: 840px) {
    .pv-page {
        padding: 18px 10px 28px;
    }

    .pv-sheet {
        padding: 22px 16px 26px;
    }

    .pv-header {
        justify-content: center;
        padding-right: 72px;
        min-height: 72px;
    }

    .pv-brand-logo {
        width: min(100%, 330px);
        max-height: 70px;
    }

    .pv-title-wrap {
        width: calc(100% - 26px);
        padding: 10px 12px 9px;
    }

    .pv-title-wrap h1 {
        font-size: 21px;
    }

    .pv-box-top,
    .pv-box-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pv-field span {
        white-space: normal;
    }

    .pv-age-field input {
        max-width: none;
        width: 100%;
        text-align: left;
    }

    .pv-check-grid label {
        white-space: normal;
    }

    .pv-contact-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 26px 22px 18px;
        border-radius: 15px;
    }

    .pv-contact-label {
        top: -14px;
        height: 27px;
        min-width: 130px;
        font-size: 18px;
        line-height: 25px;
    }

    .pv-contact-text {
        white-space: normal;
        font-size: 15px;
    }

    .pv-ministry-lockup {
        justify-content: flex-start;
        width: 100%;
    }

    .pv-ministry-lockup img {
        height: 52px;
        max-width: 245px;
    }
}
