/* ==========================================================================
   Licompass – TEMP500 static build
   ========================================================================== */

/* Reisinger Michal */
@font-face {
    font-family: 'ReisingerMichal';
    src: url('../fonts/Reisinger-Michal-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ReisingerMichal';
    src: url('../fonts/Reisinger-Michal-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ReisingerMichal';
    src: url('../fonts/Reisinger-Michal-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-orange: #F69423;
    --color-orange-dark: #e07f0a;
    --color-dark: #000000;
    --color-text: #2b2b2b;
    --color-muted: #6b6b6b;
    --color-cream: #f4f0e8;
    --color-beige: #efe9dd;
    --color-border: #e4ddcf;
    --font-main: 'ReisingerMichal', sans-serif;
    --font-heading: 'ReisingerMichal', sans-serif;
    --container-width: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange { color: var(--color-orange); }
.text-black { color: var(--color-dark); }

.section-label {
    position: relative;
    display: inline-block;
    color: var(--color-orange);
    font-weight: 300;
    font-size: 20px;
    padding-bottom: 10px;
    /* border-bottom: 2px solid var(--color-orange); */
    margin-bottom: 18px;
}
.section-label:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 2px;
    background: var(--color-dark);
}
.section-label.center {
    display: block;
    text-align: center;
    margin: 0 auto 30px;
    width: fit-content;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 16px;
    line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 18px; }

p { margin: 0 0 14px; color: var(--color-text); font-weight: 300; }

/* Fade-in reveal
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 20px;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-orange {
    background: var(--color-orange);
    color: #fff;
    border: 2px solid var(--color-orange);
}

.btn-orange:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: #fff;
}

.btn-sm {
    padding: 10px 30px;
    font-size: 16px;
}

/* Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo img { height: 32px; }

.mobile-nav-close,
.mobile-nav-logo,
.mobile-nav-actions {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-dark);
    transition: color .2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 300;
    font-size: 16px;
    direction: ltr;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle img {
    width: 22px;
    height: auto;
}

/* Hero
   ========================================================================== */

.hero {
    background: url('../images/hero-bg.jpg?v=3332') left center / cover no-repeat, var(--color-cream);
    padding: 100px 0 150px;
}

.hero-content {
    max-width: 740px;
    /* margin-inline-start: auto; */
    text-align: right;
}
.hero-content h1{
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: var(--color-text);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

/* Features
   ========================================================================== */

.features {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.features-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    padding: 46px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.feature-item + .feature-item::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 100%;
    width: 1px;
    background: var(--color-border);
}

.feature-icon {
    height: 140px;
    margin: 0 auto 20px;
}

.feature-item h3 {
    color: var(--color-orange);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 18px;
    color: var(--color-muted);
}

/* Specialties / compass
   ========================================================================== */

.specialties {
    background: url('../images/our-specialties-bg.jpg') left center / contain no-repeat;
    padding: 90px 0;
    min-height: 700px;
}

.specialties-inner {
    display: block;
}

.specialties-image { display: none; }

.specialties-content {
    max-width: 760px;
    margin-inline-end: auto;
    text-align: right;
}
.specialties-content h2 { 
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 400;
}
.specialties-content p{
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 30px;
}
.check-list {
    margin: 24px 0 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-weight: 600;
    font-size: 15px;
}
.check-list li  span{
    color: var(--color-dark);
    font-weight: 300;
    font-size: 24px;
}
.icon-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--color-orange);
    border-bottom: 2px solid var(--color-orange);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.text-link {
    color: var(--color-orange);
    /* font-weight: 600; */
    /* border-bottom: 1px solid var(--color-orange); */
}

/* Projects
   ========================================================================== */

.projects {
    padding: 90px 0 70px;
    background: #fff;
}
.projects .section-heading h2{
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.section-heading p {
    color: var(--color-dark);
    font-size: 24px;
}

.sub-label {
    display: block;
    font-size: 24px;
    font-weight: 300;
    text-decoration: underline;
    margin-top: 20px;
}

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

.project-card {
    background: var(--color-cream);
    border-radius: 14px;
    padding: 30px;
    text-align: right;
}

.project-logo {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #fff;
}

.project-logo img {
    width: 100%;
    height: 100%;    
}

.project-card h3 { 
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px; 
}

.project-card p {
    font-size: 14px;
    color: var(--color-dark);
    margin: 0;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Stats
   ========================================================================== */

.stats {
    padding: 60px 0 90px;
    text-align: center;
}

.stats-heading { 
    margin-bottom: 34px;
    font-size: 48px;
    font-weight: 400;
}

.stats-box {
    background: var(--color-beige);
    border-radius: 18px;
    padding: 46px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.stat-item {
    position: relative;
    padding: 0 40px;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 100%;
    width: 1px;
    background: rgb(0 0 0);
}

.stat-number {
    display: block;
    direction: ltr;
    font-size: 64px;
    font-weight: 400;
    color: var(--color-orange);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-dark);
    margin: 0;
}

/* Logos marquee
   ========================================================================== */

.logos-strip {
    padding: 60px 0;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 70s linear infinite;
}

.marquee-track img {
    height: 70px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-33.3333%); }
}

/* About page
   ========================================================================== */

.about-hero {
    position: relative;
    padding: 110px 90px;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #fff 0%, #fff 45%, rgba(255, 255, 255, 0) 85%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.about-hero-content {
    max-width: 620px;
    text-align: right;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 16px;
    margin-bottom: 16px;
}

.about-hero-image img {
    width: 100%;
    border-radius: 14px;
}

/* Generic content page header (page.htm)
   ========================================================================== */

.about-hero.page-hero {
    padding: 0;
    min-height: auto;
    display: block;
    overflow: visible;
    background: none;
}

.about-hero.page-hero::before {
    content: none;
}

.page-hero .about-hero-inner {
    display: block;
}

.page-hero .about-hero-content {
    max-width: 100%;
    text-align: right;
    padding: 0 24px 60px;
}

.page-hero .about-hero-content > h2:first-child {
    /* background: var(--color-cream); */
    box-shadow: 0 0 0 100vmax var(--color-cream);
    color: var(--color-orange);
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 50px;
    padding: 20px 0;
}

.page-hero .about-hero-content h2,
.page-hero .about-hero-content h3 {
    color: var(--color-orange);
    font-size: 26px;
    font-weight: 400;
    margin: 40px 0 16px;
}

.page-hero .about-hero-content p {
    /* max-width: 760px; */
    /* margin: 0 auto 16px; */
    color: var(--color-muted);
    font-size: 16px;
}

/* Team page (page.htm)
   ========================================================================== */

.page-hero .about-hero-content .section-heading h2 {
       margin-top: 40px;
    font-size: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: right;
}

.team-card {
    background: var(--color-cream);
    border-radius: 14px;
    padding: 24px;
    text-align: right;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-photo.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 4px;
}

.team-role {
    display: block;
    color: var(--color-dark);
    font-size: 18px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0;
}

/* Contact page (contactus.htm)
   ========================================================================== */

.contact-section {
    padding: 80px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 60px;
}

.contact-form-col h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--color-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-success {
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 16px;
}

.contact-success:empty {
    display: none;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 16px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.contact-info-col {
    background: var(--color-cream);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: right;
}

.contact-logo {
    height: 40px;
    margin-bottom: 26px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-label {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin: 0;
    color: var(--color-muted);
}

.contact-info-item a {
    color: var(--color-muted);
}

.about-quote {
    padding: 90px 0;
}

.quote-card {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 60px 40px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.quote-card p {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 22px;
   
}

.quote-card cite {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

/* CTA banner
   ========================================================================== */

.cta-banner {
    background: url('../images/last-bg.png?v=333') center / cover no-repeat;
    padding: 90px 0;
    text-align: center;
}

.cta-banner h2 { 
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-banner p {
 max-width: 500px;
    font-size: 24px;
    margin: 0 auto 30px;
    color: var(--color-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer
   ========================================================================== */

.site-footer {
    background: #fff;
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.4fr;
    gap: 30px;
    text-align: right;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-orange);
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-col ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--color-text);
}

.footer-col ul li a:hover { color: var(--color-orange); }

.footer-brand img {
    /* height: 30px; */
    margin-bottom: 18px;
    /* margin-inline-start: auto; */
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-muted);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-muted);
}

/* Back to top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s;
    z-index: 150;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Responsive
   ========================================================================== */

@media (max-width: 991px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .btn { font-size: 16px; }
    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        inset: 0;
        z-index: 300;
        background: #fff;
        padding: 32px 24px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s;
     }
    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 26px;
        margin: 50px 0 40px;
    }
    .main-nav a { font-size: 18px; }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 24px;
        left: 24px;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .mobile-nav-close span {
        position: absolute;
        top: 50%;
        right: 0;
        width: 100%;
        height: 2px;
        background: var(--color-dark);
    }
    .mobile-nav-close span:first-child { transform: rotate(45deg); }
    .mobile-nav-close span:last-child { transform: rotate(-45deg); }

    .mobile-nav-logo { display: block; }
    .mobile-nav-logo img { height: 30px; }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        /* max-width: 280px; */
    }
    .mobile-nav-actions .btn { width: 100%; text-align: center; }
    .mobile-nav-actions .btn-orange { color: var(--color-beige); }

    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; order: -1; }
    .logo { order: 1; }

    .hero { background-image: url('../images/Hero.png'); padding: 60px 0 100px; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p,
    .check-list li,
    .check-list li span { font-size: 16px; }
    .section-label { font-size: 16px; }
    .features { margin-top: -40px; }
    .features-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
    }

    .feature-item + .feature-item::before { display: none; }

    .specialties {  background: url('../images/our-specialties-mbg.png') left center / contain no-repeat; min-height: auto; padding: 60px 0; }
    .specialties-content h2 { font-size: 34px; }
    .specialties-content p { font-size: 16px; }
    .specialties-content { max-width: 100%; margin-inline-start: 0; }
    .specialties-content a.btn { width: 100%;text-align: center; }
    .specialties-image { display: block; margin-bottom: 24px; }

    .about-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .about-hero-image { order: -1; }
    .about-hero-content h1 { font-size: 28px; }
    .about-hero-content p { font-size: 16px; }
    .quote-card { padding: 36px 24px; }
    .quote-card p { font-size: 22px; }

    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 30px; }
    .projects .section-heading h2 { font-size: 28px; }
    .section-heading p { font-size: 16px; }
    .stats { padding: 0 0 60px; }
    .stats-heading { font-size: 28px; margin-bottom: 30px; }
    .stats-box { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .stat-item { padding: 20px; }
    .stat-item + .stat-item::before { 
        content: '';
        position: absolute;
        top: 5px;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgb(0 0 0);
     }
    .stat-number { font-size: 48px; }
    .cta-banner h2 { font-size: 28px; }
    .cta-banner p { font-size: 16px; }
    .stat-item p { font-size: 16px; }
    .cta-banner { background-image: url('../images/CTA_Section.png'); }
    .cta-buttons { flex-direction: column; align-items: center; }
     .cta-buttons .btn { width: 100%; text-align: center; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }

    .header-inner { height: 64px; }
    .logo img { height: 26px; }

    .hero { padding: 40px 0 80px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }

    .about-hero { padding: 60px 24px; min-height: auto; }

    .page-hero .about-hero-content > h2:first-child { font-size: 16px; padding: 14px 0; margin-bottom: 30px; }
    .page-hero .about-hero-content h2,
    .page-hero .about-hero-content h3 { font-size: 22px; }
    .page-hero .about-hero-content p { font-size: 15px; }

    .features-card { grid-template-columns: 1fr; padding: 30px 20px; gap: 30px; }

    .projects-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 50px 0; }
    .contact-form-row { grid-template-columns: 1fr; }

    .stats-box { grid-template-columns: 1fr; gap: 26px; }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand img { margin-inline: auto; }
    .footer-social { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    /* .check-list li { justify-content: flex-end; } */
}

/* Contact form: terms checkbox styling (moved from inline styles) */
.contact-terms { margin: 12px 0; }
.contact-terms label { 
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: start;
 }
.contact-terms input[type="checkbox"] { 
    transform: scale(1.05); margin: 0 8px 0 0;width: auto;margin-left: 10px; }
