@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css');

:root {
    --blue: #185279;
    --light-blue: #73a2cb;
    --ink: #17232b;
    --muted: #59666d;
    --line: #dbe3e7;
    --surface: #f4f7f8;
    --white: #fff;
    --max: 1180px;
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1, h2, h3 {
    color: var(--blue);
    font-family: "Gill Sans", "Gill Sans MT", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(1.75rem, 3.35vw, 3.15rem);
}

h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    margin-bottom: 0.7rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    z-index: 5;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    transition: box-shadow .25s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    transition: min-height .25s ease;
}

.brand img {
    height: 100px;
    margin: 10px 0;
    object-fit: contain;
    object-position: left center;
    transition: width .25s ease, height .25s ease, margin .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(24, 82, 121, .1);
}

.site-header.is-scrolled .nav {
    min-height: 64px;
}

.site-header.is-scrolled .brand img {
    width: auto;
    height: 54px;
    margin: 0;
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    color: var(--blue);
    font: inherit;
    font-weight: 700;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links a {
    padding: 6px 10px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    border-color: var(--light-blue);
    color: var(--blue);
}

.hero {
    position: relative;
    min-height: min(690px, calc(100vh - 140px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--blue);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(8, 35, 52, .91) 0%, rgba(8, 35, 52, .59) 43%, rgba(8, 35, 52, .08) 72%);
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .93;
}

.hero-content {
    position: relative;
    padding: 0 0 34px;
    color: #fff;
    text-align: center;
}

.hero h1 {
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.6rem;
    letter-spacing: .12em;
    line-height: 1.35;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--light-blue);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #d2e7f5;
}

.lead {
    max-width: 720px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.button, .wcf_btnNext {
    display: inline-block !important;
    padding: 12px 22px !important;
    border: 1px solid var(--blue) !important;
    border-radius: var(--radius) !important;
    background: var(--blue) !important;
    color: #fff !important;
    font-weight: 700 !important;
    transition: .2s !important;
}

.wcf_btnNext {
    font-size:17px !important;
    margin-top:20px;
    float: right;
}
.button:hover, .wcf_btnNext:hover {
    background: transparent !important;
    color: var(--blue) !important;
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: var(--blue);
}

.button-light:hover {
    background: transparent;
    color: #fff;
}

/* Kontakt-Erfolgseite */
.button-outline {
    background: transparent !important;
    color: var(--blue) !important;
}

.button-outline:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.success-panel {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 68px);
    border: 1px solid var(--light-blue);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(24, 82, 121, .07);
    text-align: center;
}

.success-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
}

.success-panel h2 {
    margin-bottom: 16px;
}

.success-panel > p:not(.success-icon) {
    max-width: 520px;
    margin: 0 auto;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.section {
    padding: 62px 0;
}

.section-muted {
    background: var(--surface);
}

.section-title {
    margin-bottom: 28px;
}

.section-title p:last-child {
    margin-bottom: 0;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: start;
}

.two-col.image-left {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.portrait {
    width: 100%;
    min-height: 500px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
}

.profile-visual {
    display: grid;
    gap: 18px;
    align-content: start;
}

.profile-visual .portrait {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 2;
}

.profile-visual .button {
    justify-self: center;
}

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

.value {
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--light-blue);
    border-radius: var(--radius);
    background: var(--white);
}

.value strong {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
    font-family: "Gill Sans", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .045em;
}

.value p {
    color: var(--muted);
    font-size: .94rem;
}

.page-intro {
    padding: 64px 0 46px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.page-intro h1 {
    margin-bottom: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.timeline {
    max-width: 940px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-item {
    position: relative;
    padding: 0 0 38px 62px;
}

.timeline-item::before {
    position: absolute;
    top: 7px;
    bottom: -7px;
    left: 14px;
    width: 1px;
    background: var(--light-blue);
    content: "";
}

.timeline-item::after {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 1px var(--light-blue);
    content: "";
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item article {
    padding: 26px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.timeline-item article > :last-child {
    margin-bottom: 0;
}

.timeline-date {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.card {
    min-height: 190px;
    padding: 30px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
}

.card h3 {
    margin-bottom: 12px;
}

.card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.page-qualifications .card {
    position: relative;
    padding: 34px 34px 34px 40px;
    border: 1px solid var(--line);
    border-left: 8px solid var(--blue);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(24, 82, 121, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-qualifications .card:hover {
    border-left-color: var(--light-blue);
    box-shadow: 0 14px 32px rgba(24, 82, 121, .13);
    transform: translateY(-3px);
}

.page-qualifications .card h3 {
    margin-bottom: 18px;
}

.home-links .card {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 170px;
    padding: 34px 30px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .28);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
    transition: background .2s ease;
}

.home-links .card::after {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: var(--light-blue);
    content: "→";
    font-size: 1.65rem;
    line-height: 1;
    transition: transform .2s ease;
}

.home-links .card h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.15rem, 1.35vw, 1.45rem);
    letter-spacing: .045em;
}

.home-links .card:hover {
    background: var(--light-blue);
}

.home-links .card:hover::after {
    color: var(--white);
    transform: translateX(5px);
}

.home-links {
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blue);
}

.home-links .card:first-child {
    border-left: 0;
}

@media (min-width: 1100px) {
    .home-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 851px) and (max-width: 1099px) {
    .home-links .card:nth-child(odd) {
        border-left: 0;
    }

    .home-links .card:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, .28);
    }
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    min-height: 48px;
    padding: 12px 16px;
    position: relative;
    border: 1px solid var(--line);
    border-left: 4px solid var(--light-blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--white);
}

.list li::before {
    display: none;
}

/* Objektarten: kompakte Liste innerhalb der großen Kategorie-Karten. */
.page-evaluation .cards .list {
    gap: 6px;
}

.page-evaluation .cards .list li {
    min-height: 0;
    padding: 4px 0 4px 12px;
    border: 0;
    border-left: 3px solid var(--light-blue);
    border-radius: 0;
    background: transparent;
}

.page-evaluation .cards .list li::before {
    display: none;
}

/* Bewertungsseite: klare Leseführung für die umfangreichen Originaltexte. */
.page-evaluation main > .section:nth-of-type(2) .container {
    padding: 42px 50px;
    border-left: 6px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: #edf5fa;
}

.page-evaluation main > .section:nth-of-type(2) p {
    font-size: 1.08rem;
}

.page-evaluation main > .section:nth-of-type(2) p:first-child {
    margin-bottom: 22px;
    color: var(--blue);
    font-family: "Gill Sans", "Gill Sans MT", Arial, sans-serif;
    font-size: 1.45rem;
    line-height: 1.3;
}

.page-evaluation main > .section:nth-of-type(2) p:last-child {
    margin-bottom: 0;
}

.page-evaluation main > .section:nth-of-type(3) .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 30px 0;
}

.page-evaluation main > .section:nth-of-type(3) .list li {
    display: flex;
    align-items: center;
}

.page-evaluation main > .section:nth-of-type(4) .cards {
    gap: 44px 64px;
}

.page-evaluation main > .section:nth-of-type(4) .card {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-evaluation main > .section:nth-of-type(4) .card h3 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-blue);
}

.page-evaluation main > .section:nth-of-type(4) .card .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}

.page-evaluation main > .section:nth-of-type(4) .card .list li {
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.page-evaluation main > .section:nth-of-type(5) .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
    align-items: start;
    gap: 32px 64px;
}

.page-evaluation main > .section:nth-of-type(5) .section-title {
    grid-column: 1 / -1;
    margin: 0;
}

.page-evaluation main > .section:nth-of-type(5) .container::before {
    grid-row: 2 / span 3;
    min-height: 470px;
    border-radius: var(--radius);
    background: url("Fotos/Gurschler_Michael_281_2.jpg") center / cover no-repeat;
    content: "";
}

.page-evaluation main > .section:nth-of-type(5) .container > h2 {
    margin: 0;
    padding: 30px 32px 0;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--white);
}

.page-evaluation main > .section:nth-of-type(5) .container > .list {
    gap: 0;
    margin: -32px 0 0;
    padding: 16px 32px 0;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.page-evaluation main > .section:nth-of-type(5) .container > .list li {
    min-height: 0;
    padding: 10px 0 10px 14px;
    border: 0;
    border-left: 3px solid var(--light-blue);
    border-radius: 0;
    background: transparent;
}

.page-evaluation main > .section:nth-of-type(5) .container > .list li::before {
    display: none;
}

.page-evaluation main > .section:nth-of-type(5) .container > p:last-child {
    margin: -32px 0 0;
    padding: 16px 32px 32px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--white);
}

.callout {
    padding: 36px;
    border-left: 4px solid var(--light-blue);
    background: #edf5fa;
}

.reference {
    border-top: 1px solid var(--line);
    padding: 25px 0;
}

.reference:last-child {
    border-bottom: 1px solid var(--line);
}

.references-section .section-title {
    margin-bottom: 30px;
}

.reference-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 108px 30px 28px;
    border: 1px solid var(--light-blue);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(24, 82, 121, .07);
}

.reference-slide::before {
    position: absolute;
    top: 24px;
    left: 26px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 8px;
    background: #91b1bf;
    color: var(--white);
    content: "“";
    font-family: Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}

.reference-slide h3 {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.testimonial-note {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 24px;
    color: #31445a;
    font-size: 1rem;
    line-height: 1.55;
}

.testimonial-author {
    margin-bottom: 0;
    color: var(--blue);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.testimonial-author span {
    font-size: .88rem;
    font-weight: 400;
}

.reference-slide a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--light-blue);
    text-underline-offset: 5px;
}

.reference-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.references-carousel {
    position: relative;
    margin: 0 54px;
}

.references-carousel .carousel-inner {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.references-carousel .carousel-inner.is-dragging {
    cursor: grabbing;
}

.references-carousel .carousel-control-prev,
.references-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    opacity: 1;
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    background: transparent;
    color: var(--blue);
    font-size: 1.5rem;
    transition: .2s ease;
    transform: translateY(-50%);
}

.references-carousel .carousel-control-prev {
    left: -54px;
}

.references-carousel .carousel-control-next {
    right: -54px;
}

.references-carousel .carousel-control-prev:hover,
.references-carousel .carousel-control-next:hover {
    background: var(--blue);
    color: var(--white);
}

@media (max-width: 767.98px) {
    .references-carousel {
        margin: 0 50px;
    }

    .references-carousel .carousel-control-prev {
        left: -50px;
    }

    .references-carousel .carousel-control-next {
        right: -50px;
    }

    .references-carousel .carousel-control-prev,
    .references-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 64px;
}

.contact-details {
    position: relative;
    margin-bottom: 470px;
    padding: 36px;
    background: var(--blue);
    color: #fff;
    border-radius: var(--radius);
}

.contact-details > img {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
}

.contact-details h2 {
    color: #fff;
}

.contact-details a {
    text-decoration: underline;
    text-decoration-color: var(--light-blue);
    text-underline-offset: 4px;
}

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

.field {
    display: grid;
    gap: 6px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    color: var(--blue);
    font-size: .9rem;
    /*font-weight: 700;*/
}

input, select, textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px !important;
    border: 1px solid #b9c7ce;
    background: #fff;
    color: var(--ink);
    font: inherit;
    border-radius: var(--radius) !important;
    font-size: 15px !important;
    line-height:19px !important;
}

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

.consent {
    font-size: .85rem;
    color: var(--muted);
}

.site-footer {
    padding: 57px 0 30px;
    background: #112e40;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 40px;
}

.footer-title {
    margin-bottom: 6px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-claim {
    color: #a6d0eb;
    font-family: "Gill Sans", Arial, sans-serif;
    font-size: 1.45rem;
}

.footer-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    color: #c6d9e5;
    font-size: .9rem;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    margin: 28px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: #b2c6d1;
    font-size: .8rem;
}

.placeholder {
    color: var(--muted);
    font-style: italic;
}

.registry-link a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--light-blue);
    text-underline-offset: 4px;
}

.privacy-content {
    max-width: 920px;
}

.privacy-content h2 {
    margin-top: 38px;
    font-size: 1.35rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-status {
    margin-top: 34px;
    color: var(--muted);
    font-size: .9rem;
    font-style: italic;
}

@media (max-width: 850px) {
    .nav {
        min-height: 110px;
    }

    .brand img {
        width: 148px;
        height: 100px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: var(--radius);
        font-size: 0;
        cursor: pointer;
    }

    .nav-toggle::before {
        position: absolute;
        top: 14px;
        right: 10px;
        left: 10px;
        height: 2px;
        background: var(--blue);
        box-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--blue);
        content: "";
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;
        padding: 16px 24px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        transition: top .25s ease;
    }

    .nav-links.open {
        display: flex;
    }

    .site-header.is-scrolled .nav {
        min-height: 58px;
    }

    .site-header.is-scrolled .brand img {
        width: auto;
        height: 48px;
        margin: 0;
    }

    .site-header.is-scrolled .nav-links {
        top: 58px;
    }

    .hero {
        min-height: 590px;
    }

    .hero-content {
        padding: 0 0 28px;
    }

    .values, .cards {
        grid-template-columns: 1fr;
    }

    .home-links .card {
        min-height: 104px;
        padding: 22px 24px;
        border-top: 1px solid rgba(255, 255, 255, .28);
        border-left: 0;
    }

    .home-links .card::after {
        right: 18px;
        bottom: 16px;
        font-size: 1.35rem;
    }

    .home-links .card:first-child {
        border-top: 0;
    }

    .two-col, .two-col.image-left, .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .portrait {
        min-height: 420px;
        max-height: 620px;
    }

    .contact-details {
        margin-bottom: 420px;
    }

    .contact-details > img {
        height: 400px;
    }

    .section, .page-intro {
        padding: 45px 0;
    }

    .page-evaluation main > .section:nth-of-type(3) .list {
        grid-template-columns: 1fr;
    }

    .page-evaluation main > .section:nth-of-type(2) .container {
        padding: 30px 26px;
    }

    .page-evaluation main > .section:nth-of-type(4) .card .list {
        grid-template-columns: 1fr;
    }

    .page-evaluation main > .section:nth-of-type(5) .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-evaluation main > .section:nth-of-type(5) .section-title {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }

    .page-evaluation main > .section:nth-of-type(5) .container::before {
        grid-column: 1;
        grid-row: 2;
        min-height: 360px;
    }

    .page-evaluation main > .section:nth-of-type(5) .container > h2 {
        grid-column: 1;
        grid-row: 3;
    }

    .page-evaluation main > .section:nth-of-type(5) .container > .list {
        grid-column: 1;
        grid-row: 4;
    }

    .page-evaluation main > .section:nth-of-type(5) .container > p:last-child {
        grid-column: 1;
        grid-row: 5;
    }

    .page-evaluation main > .section:nth-of-type(5) .container > .list,
    .page-evaluation main > .section:nth-of-type(5) .container > p:last-child {
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(var(--max), calc(100% - 32px));
    }

    .form-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .value, .card, .contact-details {
        padding: 25px;
    }
}

.wcf_lblTitle { display:none; }
.z-window, .z-window-content { border:none !important; padding:0 !important; }
