/* Global desktop styling: header, content blocks, footer, and interactions. */
:root {
    --bg: #f4f8ff;
    --bg-soft: #edf4ff;
    --surface: #ffffff;
    --text: #1d2939;
    --muted: #667085;
    --primary: #0f4c8121;
    --primary-2: #1066b1;
    --accent: #18a0fb;
    --border: rgba(15, 76, 129, 0.14);
    --shadow-lg: 0 20px 50px rgba(16, 40, 72, 0.12);
    --shadow-md: 0 10px 30px rgba(16, 40, 72, 0.08);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Bahnschrift", "Segoe UI", "Inter", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 5% 8%, rgba(24, 160, 251, 0.22), transparent 35%),
        radial-gradient(circle at 95% 0%, rgba(15, 76, 129, 0.16), transparent 36%),
        var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background-color: var(--white);
    /* Header no longer sticky, but wrapper is */
    z-index: 900;
}

.sticky-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    /* Optional: add slight shadow to navigation bar */
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.05);
}

.site-header .container {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

/* Header Search Form */
.header-search-form {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input-wrapper {
    position: relative;
    display: inline-block;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 6px;
    z-index: 1100;
    overflow: hidden;
}

.search-suggestion-item {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f4f8;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background-color: var(--bg-soft);
    color: var(--primary-2);
}

.search-input {
    padding: 11px 18px;
    border: 1px solid #d1d9e6;
    border-radius: 999px;
    font-size: 0.95rem;
    min-width: 180px;
    max-width: 250px;
    background-color: var(--surface);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    border-color: var(--primary-2);
    box-shadow: 0 0 0 3px rgba(16, 102, 177, 0.15);
}

.header-search-btn {
    padding: 11px 18px;
    font-size: 0.95rem;
    margin: 0;
}

.page-content.container {
    width: 87%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 0 6px;
    transition: gap 0.25s ease, padding 0.25s ease;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
    backdrop-filter: blur(8px);
    transition: none;
}

.header-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    text-decoration: none;
}

.brand-logo {
    width: 116px;
    /* height: 116px; */
    object-fit: contain;
    border-radius: 0;
    filter: none;
    transition: none;
}

.header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.15;
}

.brand-name {
    font-size: 1.45rem;
    font-weight: 700;
    transition: none;
}

.brand-subtitle {
    display: none;
    font-size: 1rem;
    font-weight: 500;
    transition: none;
}

.header-contact {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    color: #111111;
    padding-top: 0;
    flex-wrap: wrap;
    transition: none;
}

.header-contact a,
.header-contact span {
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    color: #23364c;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.96rem;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #0f4c81;
    background: rgba(16, 102, 177, 0.12);
    border-color: rgba(16, 102, 177, 0.18);
}


.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 102, 177, 0.22);
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #edf5ff);
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--primary);
}

.page-content {
    min-height: calc(100vh - 220px);
    padding: 56px 0;
}

h1,
h2 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.95rem, 4vw, 3rem);
    color: #0e3557;
}

h2 {
    font-size: 1.25rem;
    color: #12395f;
}

p {
    margin-top: 0;
}

.eyebrow {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 12px;
    color: var(--primary-2);
    background: rgba(16, 102, 177, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lead {
    color: #334155;
}

.hero,
.section-head,
.contact-cta {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(24px, 4vw, 42px);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* --- Produkt Raster --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.modern-slide-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slide-card-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px;
}

.slide-card-body.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slide-card-body.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #12395f;
}

.product-desc {
    margin: 0 0 15px 0;
    color: #475467;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}
/* -----------------------*/

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    align-items: start;
    margin: 13px;
}

.hero-copy .lead {
    margin-bottom: 12px;
}

.hero-hint {
    margin-top: 10px;
    color: #37516b;
    font-weight: 500;
}

.hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-image,
.team-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(15, 76, 129, 0.15);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface);
    overflow: hidden;
}

.hero-image img,
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.hero-media-text {
    margin: 0;
    text-align: center;
    color: #284866;
    font-weight: 500;
}

.hero-media-actions {
    margin-top: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: var(--shadow-md);
}

.btn-doctolib {
    gap: 8px;
}

.btn-doctolib-logo {
    height: 18px;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
}

.btn-secondary {
    color: var(--primary);
    background: #ffffff;
    border: 1px solid var(--border);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.card {
    grid-column: span 4;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.card p {
    color: #475467;
    margin-bottom: 0;
}

.hero-copy .lead,
.section-head .lead,
.card p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-image {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(15, 76, 129, 0.15);
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-detail {
    margin-top: 16px;
}

.service-detail-image {
    max-width: 360px;
}

.service-address {
    font-weight: 600;
}

.muted {
    color: var(--muted);
    font-weight: 600;
}

.contact-grid .card {
    grid-column: span 4;
}

.hours-section {
    margin-top: 26px;
}

.hours-head {
    margin-bottom: 16px;
}

.hours-grid .hours-card {
    grid-column: span 6;
}

.hours-card h3 {
    margin: 0 0 10px;
    color: #12395f;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 76, 129, 0.12);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 700;
    color: #1f3c5c;
}

.hours-time {
    color: #37516b;
    text-align: right;
}

.hours-note {
    margin-top: 12px;
    margin-bottom: 0;
    color: #4b6076;
}

.hours-note a {
    color: #0f4c81;
    text-decoration: none;
    font-weight: 700;
}

.appointment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.cv-grid .cv-card {
    grid-column: span 6;
}

.cv-grid .cv-card-wide {
    grid-column: span 12;
}

.cv-grid-table .card h2 {
    margin-bottom: 14px;
}

.cv-table-wrap {
    overflow-x: auto;
}

.cv-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(16, 102, 177, 0.14);
    background: #ffffff;
}

.cv-table th,
.cv-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(16, 102, 177, 0.12);
    vertical-align: top;
    text-align: left;
}

.cv-table thead th {
    background: rgba(16, 102, 177, 0.1);
    color: #12395f;
    font-weight: 700;
}

.cv-table tbody tr:nth-child(even) {
    background: rgba(16, 102, 177, 0.03);
}

.cv-table tbody tr:last-child td,
.cv-table tbody tr:last-child th {
    border-bottom: none;
}

.cv-col-period {
    width: 180px;
    white-space: nowrap;
    color: #0f4c81;
    font-weight: 700;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(16, 102, 177, 0.12);
    color: #0f4c81;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(16, 102, 177, 0.18);
}

.team-photo {
    margin-bottom: 10px;
}

.team-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-cta {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    color: #1f3c5c;
}

.site-footer {
    margin-top: 16px;
    color: #d7e8fb;
    background: linear-gradient(130deg, #0c3255, #092944);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 30px 0 24px;
}

.footer-col {
    min-width: 0;
}

.footer-col + .footer-col {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 18px;
}

.footer-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0 0 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-links a {
    text-decoration: none;
    color: #d7e8fb;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-inner p {
    margin: 0 0 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 0 20px;
    color: #b9d3ef;
    font-size: 0.9rem;
}

.cookie-notice {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 29, 49, 0.96);
}

.cookie-notice-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0 14px;
}

.cookie-notice p {
    margin: 0;
    color: #d7e8fb;
}

.cookie-notice a {
    color: #ffffff;
    text-decoration: underline;
}

.scroll-top-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 76, 129, 0.2);
    background: linear-gradient(135deg, #ffffff, #e8f2ff);
    color: #0f4c81;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 76, 129, 0.24);
    z-index: 220;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.scroll-top-button:hover {
    transform: translateY(6px);
}

.scroll-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .header-top {
        padding: 14px 16px;
    }

    .header-bottom {
        padding: 8px 10px;
    }

    .header-contact {
        font-size: 0.9rem;
        gap: 14px;
    }

    .card {
        grid-column: span 6;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

* {
    border-radius: 5px !important;
}

/* --- Inline Style Replacements --- */
/* index.php */
.home-hero-margin {
    margin-bottom: 40px !important;
}
.products-section-margin {
    margin-top: 40px !important;
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}
.product-card-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* product.php */
.product-detail-mb {
    margin-bottom: 20px;
}
.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1066b1;
    text-decoration: none;
}
.product-availability-status {
    display: none;
    /* margin-bottom: 10px; */
}
.product-status-color {
    color: #15803d;
    font-weight: bold;
}
.product-short-desc {
    font-weight: 600;
    margin-top: 15px;
    color: #1d2939;
    font-size: 1.05rem;
}
.product-long-desc {
    margin-top: 25px;
    color: #475467;
}
.product-actions-spacing {
    margin-top: 35px;
}
.product-inquiry-btn {
    font-size: 1.1rem;
    padding: 14px 28px;
}

/* Layout fÃ¼r Product Master */
.product-master-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
}

.product-main-col {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 76, 129, 0.14);
}

.product-image-box {
    position: relative;
    /* width: 450px !important; */
    max-width: 100% !important;
    height: 450px !important;
    margin: 0 auto 30px auto;
    background: #f8fafc;
    /* border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0; */
    overflow: hidden;
}

.image-carousel {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

.carousel-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: none;
    border-radius: 8px;
}

.carousel-img.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #1066b1;
    border: 1px solid #d1d9e6;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 10;
}

.slide-nav-btn:hover {
    background: #1066b1;
    color: #ffffff;
    border-color: #1066b1;
}

.slide-nav-btn.slide-prev { left: 15px; }
.slide-nav-btn.slide-next { right: 15px; }

.product-text-details h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-side-col {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 76, 129, 0.14);
    display: flex;
    flex-direction: column;
    height: 750px;
}

.side-col-header {
    font-weight: 700;
    font-size: 1rem;
    color: #0e3557;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.vertical-slider-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vertical-track {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 5px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.vertical-track::-webkit-scrollbar {
    display: none;
}

.v-slide-btn {
    background: #f0f4f8;
    border: 1px solid #d1d9e6;
    color: #1066b1;
    cursor: pointer;
    font-size: 1.5rem;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 5px 0;
    z-index: 10;
}

.v-slide-btn:hover {
    background: #1066b1;
    color: #ffffff;
}

.side-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1d2939;
    flex-shrink: 0;
}

.side-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 40, 72, 0.08);
    border-color: #1066b1;
}

.side-product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.side-product-card span {
    font-size: 0.9rem;
    font-weight: 600;
}



/* 404 Error Page */
.error-page-wrapper { text-align: center; padding: 100px 20px; }
.error-page-content h1 { font-size: 5rem; color: #1066b1; margin-bottom: 10px; }
.error-page-content p { margin: 20px 0 35px 0; color: #475467; font-size: 1.1rem; }



/* Kontakt Seite / Contact Cards */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.contact-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #d1d9e6;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.05);
    transition: transform 0.2s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.contact-icon {
    background: var(--bg-soft);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-2);
    font-size: 1.4rem;
}
.contact-title {
    color: var(--text);
    margin: 0;
    font-size: 1.4rem;
}
.contact-address {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.contact-data-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f4f8;
}
.contact-link {
    color: var(--primary-2);
    font-weight: 600;
    text-decoration: none;
}
.contact-text {
    color: var(--muted);
    margin-bottom: 20px;
}
.contact-times-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}
.contact-times-cell, .contact-times-val {
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
}
.contact-times-table tr:last-child td {
    border-bottom: none;
}
.contact-times-cell {
    color: var(--muted);
}
.contact-times-val {
    text-align: right;
    font-weight: 500;
}

