*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

:root {
--menu-color: #0C285D;
--button-bg: #2057BE;
--button-light: #D2E2FF;
--button-hover: #144399;
--heading-color: #387DFF;
--text-color: #1F2933;
--white: #FFFFFF;
--border-color: #E5E7EB;
--header-height:90px;
}

body {
margin: 0;
min-height: 100vh;
font-family: Arial, Helvetica, sans-serif;
color: var(--text-color);
background-color: var(--white);
}

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

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

button,
input,
textarea,
select {
font: inherit;
}

button {
cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
}

.container {
width: min(1180px, calc(100% - 40px));
margin-inline: auto;
}

/* Header */

.site-header {
position: relative;
z-index: 1000;
width: 100%;
background-color: var(--white);
border-bottom: 1px solid var(--border-color);
}

.header-container {
min-height: var(--header-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
}

.header-logo {
width: 200px;
flex-shrink: 0;
}

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

.desktop-navigation {
margin-left: auto;
}

.navigation-list {
display: flex;
align-items: center;
gap: 18px;
}

.navigation-list a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 9px 14px;
color: var(--menu-color);
background-color: transparent;
border-radius: 20px;
font-size: 15px;
font-weight: 600;
white-space: nowrap;
transition:
color 0.2s ease,
background-color 0.2s ease,
transform 0.2s ease;
}

.navigation-list a:hover {
color: var(--menu-color);
background-color: var(--button-light);
transform: translateY(-1px);
}

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

.header-call-button,
.header-patient-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 42px;
padding: 10px 16px;
color: var(--button-bg);
background-color: var(--button-light);
border: 1.5px solid var(--button-light);
border-radius: 20px;
font-size: 14px;
font-weight: 700;
white-space: nowrap;
transition:
background-color 0.2s ease,
border-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease;
}

.header-call-button svg {
width: 20px;
height: 20px;
flex-shrink: 0;
stroke: currentColor;
}

.header-call-button:hover,
.header-patient-button:hover {
color: var(--white);
background-color: var(--button-hover);
border-color: var(--button-hover);
transform: translateY(-2px);
}

/* Hero */

.hero {
position: relative;
min-height: 1150px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-image: url("../assets/images/hero-pflege.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.hero-overlay {
position: absolute;
inset: 0;
background-color: rgba(60, 92, 125, 0.72);
}

.hero-container {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.hero-content {
max-width: 760px;
padding: 100px 0;
text-align: center;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
padding: 9px 16px;
color: #FFFFFF;
background-color: rgba(255, 255, 255, 0.14);
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 999px;
font-size: 14px;
font-weight: 500;
}

.hero-title {
margin: 0;
color: #FFFFFF;
font-size: clamp(38px, 4vw, 54px);
line-height: 1.12;
letter-spacing: -0.025em;
}

.hero-description {
max-width: 620px;
margin: 22px auto 0;
color: rgba(255, 255, 255, 0.92);
font-size: 19px;
line-height: 1.6;
}

.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
margin-top: 32px;
}

.hero-primary-button,
.hero-secondary-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 50px;
padding: 13px 22px;
border-radius: 24px;
font-size: 15px;
font-weight: 500;
line-height: 1;
white-space: nowrap;
transition:
color 0.2s ease,
background-color 0.2s ease,
border-color 0.2s ease,
transform 0.2s ease;
}

.hero-primary-button {
color: #FFFFFF;
background-color: #387DFF;
border: 1.5px solid #387DFF;
}

.hero-primary-button:hover {
color: #FFFFFF;
background-color: #144399;
border-color: #144399;
transform: translateY(-2px);
}

.hero-secondary-button {
color: #FFFFFF;
background-color: transparent;
border: 1.5px solid #FFFFFF;
}

.hero-secondary-button:hover {
color: #3C5C7D;
background-color: #FFFFFF;
border-color: #FFFFFF;
transform: translateY(-2px);
}

.hero-primary-button img,
.hero-secondary-button svg {
display: block;
width: 19px;
height: 19px;
flex-shrink: 0;
}

.hero-secondary-button svg {
fill: none;
stroke: currentColor;
}

/* Modal */

.patient-modal {
position: fixed;
inset: 0;
z-index: 3000;

display: flex;
align-items: center;
justify-content: center;

padding: 18px;

visibility: hidden;
opacity: 0;
pointer-events: none;

transition:
    opacity 0.25s ease,
    visibility 0.25s ease;

}

.patient-modal.is-open {
visibility: visible;
opacity: 1;
pointer-events: auto;
}

.patient-modal-overlay {
position: absolute;
inset: 0;

background-color: rgba(12, 40, 93, 0.48);
backdrop-filter: blur(2px);

}

.patient-modal-dialog {
position: relative;
z-index: 1;

width: min(760px, calc(100% - 36px));
max-height: calc(100vh - 36px);

overflow-y: auto;

background-color: #FFFFFF;
border-radius: 20px;
box-shadow: 0 24px 70px rgba(12, 40, 93, 0.24);

transform: translateY(18px) scale(0.98);
transition: transform 0.25s ease;

}

.patient-modal.is-open .patient-modal-dialog {
transform: translateY(0) scale(1);
}

.patient-modal-content {
padding: 30px 44px 26px;
}

.patient-modal-close {
position: absolute;
top: 14px;
right: 14px;
z-index: 2;

display: inline-flex;
align-items: center;
justify-content: center;

width: 32px;
height: 32px;
padding: 0;

color: #0C285D;
background-color: transparent;
border: 0;
border-radius: 50%;

font-size: 25px;
font-weight: 300;
line-height: 1;

transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;

}

.patient-modal-close:hover {
color: #FFFFFF;
background-color: #144399;
transform: rotate(90deg);
}

body.modal-open {
overflow: hidden;
}

/* Formular */

.section-heading,
.patient-form {
width: 100%;
max-width: 620px;
margin-inline: auto;
}

.section-heading {
padding-right: 42px;
padding-bottom: 20px;
border-bottom: 1px solid #E4EBF4;
}

.section-label {
display: inline-block;
margin-bottom: 8px;

color: #387DFF;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;

}

.section-heading h2 {
margin: 0;

color: #0C285D;
font-size: 25px;
line-height: 1.2;

}

.section-heading p {
margin: 10px 0 0;

color: #66758A;
font-size: 13px;
line-height: 1.55;

}

.patient-form {
display: flex;
flex-direction: column;
gap: 22px;

margin-top: 22px;

}

.form-section {
width: 100%;
padding-bottom: 20px;
border-bottom: 1px solid #E4EBF4;
}

.form-section:last-of-type {
padding-bottom: 0;
border-bottom: 0;
}

.form-section h3,
.form-section-title {
margin: 0 0 14px;

color: #387DFF;
font-size: 15px;
font-weight: 400;
line-height: 1.3;
letter-spacing: 0.06em;
text-transform: uppercase;

}

.form-section-description {
margin: -6px 0 14px;

color: #66758A;
font-size: 15px;
line-height: 1.5;

}

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

.form-group {
display: flex;
flex-direction: column;
gap: 6px;
}

.form-group-full {
grid-column: 1 / -1;
}

.form-group label {
color: #0C285D;
font-size: 14px;
font-weight: 550;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 10px 12px;

color: #1F2933;
background-color: #F8FAFD;
border: 1px solid #CAD6E5;
border-radius: 8px;
outline: none;

font-size: 14px;

transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: #387DFF;
box-shadow: 0 0 0 4px rgba(56, 125, 255, 0.12);
}

.form-group textarea {
min-height: 82px;
resize: vertical;
}

/* Normale Checkbox-Liste */

.services-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px 36px;
}

.service-checkbox {
display: flex;
align-items: center;
gap: 9px;

color: #1F2933;
font-size: 13px;
cursor: pointer;

}

.service-checkbox input {
width: 16px;
height: 16px;
margin: 0;
flex-shrink: 0;
accent-color: #387DFF;
}

/* Datenschutz */

.privacy-checkbox {
display: flex;
align-items: flex-start;
gap: 10px;

width: 100%;
padding: 14px 16px;

color: #53657A;
background-color: #F7F9FC;
border-radius: 8px;

font-size: 11px;
line-height: 1.5;

}

.privacy-checkbox input {
width: 16px;
height: 16px;
margin-top: 1px;
flex-shrink: 0;
accent-color: #387DFF;
}

.privacy-checkbox a {
color: #2057BE;
text-decoration: underline;
}

.required-star {
color: #0C285D;
font-weight: 800;
}

/* Buttons */

.form-actions {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;

width: 100%;

}

.form-submit-button,
.form-cancel-button {
width: 100%;
min-height: 44px;
padding: 10px 18px;

border-radius: 24px;
font-size: 13px;
font-weight: 700;

transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;

}

.form-submit-button {
color: #FFFFFF;
background-color: #387DFF;
border: 1px solid #387DFF;
}

.form-submit-button:hover {
background-color: #144399;
border-color: #144399;
transform: translateY(-1px);
}

.form-submit-button:disabled {
cursor: not-allowed;
opacity: 0.65;
transform: none;
}

.form-cancel-button {
color: #0C285D;
background-color: #FFFFFF;
border: 1px solid #CAD6E5;
}

.form-cancel-button:hover {
color: #FFFFFF;
background-color: #144399;
border-color: #144399;
}

/* Hinweis unten */

.form-info-box {
width: 100%;
padding: 12px 14px;

color: #0C285D;
background-color: #EEF5FF;
border-left: 3px solid #387DFF;
border-radius: 7px;

font-size: 11px;
line-height: 1.5;

}

.required-note {
width: 100%;
margin: -8px 0 0;

color: #6B7788;
font-size: 10px;

}

.form-status {
width: 100%;
min-height: 20px;

color: #0C285D;
text-align: center;
font-size: 12px;
font-weight: 700;

}

.form-status.success {
color: #176B45;
}

.form-status.error {
color: #B42318;
}

.form-submit-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.form-submit-button img {
color: #FFFFFF;
display: block;
width: 30px;
height: 20px;
flex-shrink: 0;
}

/* About Section */

.about-section {
padding: 105px 0 180px;
background-color: #FFFFFF;
}

.about-container {
display: grid;
grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
align-items: start;
gap: 68px;
}

/* Bild */

.about-image-wrapper {
width: 100%;
overflow: hidden;
border-radius: 14px;
}

.about-image {
width: 100%;
height: 520px;
object-fit: cover;
object-position: center;
}

/* Textbereich */

.about-content {
padding-top: 4px;
}

.about-eyebrow {
display: inline-block;
margin-bottom: 20px;

color: #387DFF;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;

}

.about-title {
margin: 0 0 26px;

color: #191B22;
font-size: clamp(38px, 3.2vw, 52px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.025em;

}

.about-text {
max-width: 540px;
margin: 0 0 22px;

color: #6B6F76;
font-size: 17px;
font-weight: 400;
line-height: 1.72;

}

.about-director {
margin: 48px 0 0;

color: #74777D;
font-size: 14px;
line-height: 1.65;

}

.about-director span {
display: block;
}
/* Vorteile */

.about-benefits {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px 24px;

margin-top: 30px;

}

.about-benefit {
display: flex;
align-items: center;
gap: 10px;

color: #0C285D;
font-size: 14px;
font-weight: 700;

}

.about-check {
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;

width: 26px;
height: 26px;

color: #2057BE;
background-color: #D2E2FF;
border-radius: 50%;

font-size: 13px;
font-weight: 800;

}

/* GeschÃƒÆ’Ã‚Â¤ftsfÃƒÆ’Ã‚Â¼hrer */

.about-manager {
display: flex;
align-items: center;
gap: 14px;

margin-top: 34px;
padding-top: 28px;

border-top: 1px solid #E5E7EB;

}

.about-manager-icon {
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;

width: 52px;
height: 52px;

color: #FFFFFF;
background-color: #387DFF;
border-radius: 50%;

font-size: 15px;
font-weight: 800;

}

.about-manager div:last-child {
display: flex;
flex-direction: column;
gap: 3px;
}

.about-manager span {
color: #77869A;
font-size: 12px;
}

.about-manager strong {
color: #0C285D;
font-size: 16px;
}

.about-manager small {
color: #5E6F83;
font-size: 12px;
}

/* Schwebende Vorteilsleiste */

.trust-section {
position: relative;
z-index: 10;

margin-top: -38px;

}

.trust-panel {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
align-items: center;

min-height: 92px;
padding: 18px 22px;

background-color: #FFFFFF;
border: 1px solid #E5ECF5;
border-radius: 18px;
box-shadow: 0 8px 22px rgba(12, 40, 93, 0.15);

}

/* Einzelner Vorteil */

.trust-item {
position: relative;

display: flex;
align-items: center;
gap: 13px;

min-width: 0;
padding: 4px 18px;

}

/* Dezente Trennlinien */

.trust-item:not(:last-child)::after {
content: "";
position: absolute;
top: 5px;
right: 0;
bottom: 5px;

width: 1px;
background-color: #E7EDF5;

}

/* Icon-Kreis */

.trust-icon {
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;

width: 44px;
height: 44px;

background-color: #D2E2FF;
border-radius: 12px;

}

.trust-icon img {
display: block;
width: 22px;
height: 22px;
object-fit: contain;
}

/* Texte */

.trust-text {
display: flex;
flex-direction: column;
gap: 5px;

min-width: 0;

}

.trust-text strong {
color: #0C285D;
font-size: 13px;
font-weight: 700;
line-height: 1.2;
white-space: nowrap;
}

.trust-text span {
color: #6B7788;
font-size: 11px;
line-height: 1.35;
white-space: nowrap;
}

/* Leistungen */

.services-preview {
padding: 100px 0 90px ;
background-color: #f5f8fd;
}

.services-preview-header {
max-width: 760px;
margin: 0 auto 70px;
text-align: center;
}

.services-eyebrow {
display: inline-block;
margin-bottom: 22px;

color: var(--heading-color);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;

}

.services-title {
margin: 0;

color: #171717;
font-size: clamp(40px, 4.4vw, 60px);
line-height: 1.12;
letter-spacing: -0.035em;

}

.services-description {
max-width: 620px;
margin: 24px auto 0;

color: #555b66;
font-size: 17px;
font-weight: 600;
line-height: 1.6;

}

/* Karten */

.services-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
max-width: 960px;
margin: 0 auto;
}

.service-card {
min-height: 280px;
padding: 28px 26px;

text-align: left;
background-color: #ffffff;
border: 1px solid #cfe0ff;
border-radius: 18px;

transition:
transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.45s ease,
border-color 0.45s ease;

}

.service-icon {
display: inline-flex;
align-items: center;
justify-content: center;

width: 46px;
height: 46px;
margin-bottom: 18px;

color: var(--heading-color);
background-color: #dfeaff;
border-radius: 10px;

font-size: 24px;
line-height: 1;

}

.service-icon svg {
width: 26px;
height: 26px;
}

.service-card h3 {
margin: 0 0 12px;

color: #222222;
font-size: 18px;
line-height: 1.3;

}

.service-card p {
margin: 0;

color: #6a6f78;
font-size: 13px;
line-height: 1.65;

}

.service-card:hover {
transform: translateY(-4px);
border-color: #CFDCF1;
box-shadow: 0 12px 28px rgba(12, 40, 93, 0.09);
}


/* Google-Bewertungen */

.reviews-section {
    padding: 100px 0 90px;
    background-color: #ffffff;
}

.reviews-header {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.reviews-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reviews-title {
    max-width: 680px;
    margin: 0 auto;
    color: #171717;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    color: #6a6f78;
    font-size: 15px;
}

.reviews-summary strong {
    color: #171717;
    font-size: 22px;
}

.review-stars {
    color: #f9b51b;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}

/* Bewertungskarten */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px 22px;
    background-color: #ffffff;
    border: 1px solid #cfe0ff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(12, 40, 93, 0.05);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: #bfd4f5;
    box-shadow: 0 16px 34px rgba(12, 40, 93, 0.1);
}

/* Sterne links und Google-Icon rechts */

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-google-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}

.review-card blockquote {
    flex: 1;
    margin: 22px 0 26px;
}

.review-card blockquote p {
    margin: 0;
    color: #555b66;
    font-size: 14px;
    line-height: 1.75;
}

/* Name und Profilbuchstabe */

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e3eaf3;
}

.review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--button-bg);
    background-color: var(--button-light);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.review-author-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-author-details strong {
    color: #222222;
    font-size: 14px;
}

.review-author-details span {
    color: #7a808a;
    font-size: 12px;
}

/* Google-Button */

.reviews-actions {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.reviews-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 18px;
    color: var(--button-bg);
    background-color: var(--button-light);
    border: 1.5px solid var(--button-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

/* Google-Icon links im Button */

.reviews-google-icon {
    display: block;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    object-fit: contain;
}

.reviews-google-button:hover,
.reviews-google-button:focus-visible {
    color: var(--white);
    background-color: var(--button-hover);
    border-color: var(--button-hover);
    transform: translateY(-2px);
}

.reviews-note {
    margin: 14px 0 0;
    color: #7a808a;
    font-size: 12px;
    text-align: center;
}

/* Tablet */

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .review-card {
        min-height: 0;
    }
}

/* Smartphone */

@media (max-width: 767px) {
    .reviews-section {
        padding: 75px 0;
    }

    .reviews-header {
        margin-bottom: 38px;
    }

    .reviews-title {
        font-size: 34px;
    }

    .reviews-summary {
        gap: 8px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .reviews-google-button {
        width: 100%;
        max-width: 340px;
    }
}
/* Tag-und-Nacht-Bereich */

.availability-section {
position: relative;
min-height: 330px;

display: flex;
align-items: center;

padding: 70px 20px;

background-image: url("../assets/images/contact.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center 48%;

overflow: hidden;

}

/* Blauer Bildfilter */

.availability-overlay {
position: absolute;
inset: 0;

background-color: rgba(60, 92, 125, 0.72);

}

/* Inhalt */

.availability-container {
position: relative;
z-index: 1;

width: 100%;

display: flex;
justify-content: center;

}

.availability-content {
width: 100%;
max-width: 720px;
margin: 0 auto;

color: #FFFFFF;
text-align: center;

}

.availability-content h2 {
margin: 0;

color: #FFFFFF;
font-size: 36px;
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.025em;
text-align: center;

}

.availability-content p {
max-width: 610px;
margin: 22px auto 0;

color: rgba(255, 255, 255, 0.94);
font-size: 14px;
line-height: 1.75;
text-align: center;

}

/* Buttons */

.availability-buttons {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 16px;

margin-top: 27px;

}

.availability-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;

min-height: 48px;
padding: 0 23px;

color: #FFFFFF;
background-color: #387DFF;
border: 1px solid #387DFF;
border-radius: 24px;

font-family: inherit;
font-size: 14px;
font-weight: 400;
text-decoration: none;
cursor: pointer;

transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;

}

.availability-button svg {
width: 18px;
height: 18px;
flex-shrink: 0;

stroke: currentColor;

}

.availability-button:hover {
color: #FFFFFF;
background-color: #2057BE;
border-color: #2057BE;

transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(12, 40, 93, 0.22);

}

.availability-button:active {
transform: translateY(0);
}
/* Unser Team */

.team-section {
padding: 100px 0 110px;
background-color: #FFFFFF;
}

.team-heading {
max-width: 720px;
margin: 0 auto 42px;
text-align: center;
}

.team-label {
display: inline-block;
margin-bottom: 19px;

color: #387DFF;
font-size: 13px;
font-weight: 700;
line-height: 1;
letter-spacing: 0.03em;
text-transform: uppercase;

}

.team-heading h2 {
margin: 0;

color: #111827;
font-size: 40px;
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.025em;

}

.team-heading p {
max-width: 680px;
margin: 23px auto 0;

color: #6B7280;
font-size: 15px;
line-height: 1.75;

}

/* GroÃƒÆ’Ã…Â¸es Teamfoto */

.team-image-wrapper {
width: 100%;
overflow: hidden;

border-radius: 22px;

}

.team-image {
display: block;
width: 100%;
height: 530px;

object-fit: cover;
object-position: center;

}

/* =========================================
Karriere und Bewerbungsformular
========================================= */

.career-section {
padding: 105px 0 115px;
background-color: #F3F7FD;
}

.career-container {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
align-items: start;
gap: 80px;
}

/* Linke Seite */

.career-content {
padding-top: 16px;
}

.career-label {
display: inline-block;
margin-bottom: 20px;

color: #387DFF;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;

}

.career-content h2 {
margin: 0;

color: #111827;
font-size: 42px;
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.025em;

}

.career-content p {
max-width: 540px;
margin: 23px 0 0;

color: #657184;
font-size: 15px;
line-height: 1.75;

}

.career-content p + p {
margin-top: 4px;
}

/* Vorteile */

.career-benefits {
display: flex;
flex-direction: column;
gap: 24px;

margin-top: 34px;

}

.career-benefit {
display: flex;
align-items: center;
gap: 15px;

color: #5E6979;
font-size: 14px;
font-weight: 500;

}

.career-benefit svg {
width: 21px;
height: 21px;
flex-shrink: 0;

color: #387DFF;
stroke: currentColor;

}

.career-main-button {
display: inline-flex;
align-items: center;
justify-content: center;

min-height: 44px;
margin-top: 38px;
padding: 0 23px;

color: #FFFFFF;
background-color: #387DFF;
border: 1px solid #387DFF;
border-radius: 24px;

font-size: 14px;
font-weight: 700;
text-decoration: none;

transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

}

.career-main-button:hover {
color: #FFFFFF;
background-color: #2057BE;
border-color: #2057BE;

transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(12, 40, 93, 0.14);

}

/* Formular-Karte */

.career-form-card {
width: 100%;
padding: 42px 42px 34px;

background-color: #FFFFFF;
border: 1px solid #C9DBF9;
border-radius: 30px;
box-shadow: 0 10px 35px rgba(12, 40, 93, 0.05);

scroll-margin-top: 120px;

}

.career-form-card h3 {
margin: 0 0 34px;

color: #1F2937;
font-size: 17px;
font-weight: 700;
text-align: center;

}

/* Formular */

.career-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.career-field {
display: flex;
flex-direction: column;
gap: 9px;
}

.career-field label {
color: #566273;
font-size: 13px;
font-weight: 500;
}

.career-field label span {
color: #0C285D;
}

.career-field input,
.career-field select,
.career-field textarea {
width: 100%;
min-height: 52px;
padding: 13px 15px;

color: #1F2937;
background-color: #F3F4F6;
border: 1px solid #D7DDE6;
border-radius: 8px;
outline: none;

font-family: inherit;
font-size: 14px;

transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;

}

.career-field textarea {
min-height: 150px;
resize: vertical;
line-height: 1.55;
}

.career-field input::placeholder,
.career-field textarea::placeholder {
color: #929BA8;
}

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
background-color: #FFFFFF;
border-color: #387DFF;
box-shadow: 0 0 0 3px rgba(56, 125, 255, 0.12);
}

/* Datenschutz */

.career-privacy {
display: flex;
align-items: flex-start;
gap: 10px;

color: #667184;
font-size: 12px;
line-height: 1.55;
cursor: pointer;

}

.career-privacy input {
width: 16px;
height: 16px;
margin-top: 2px;
flex-shrink: 0;

accent-color: #387DFF;

}

.career-privacy a {
color: #2057BE;
text-decoration: underline;
}

/* Buttons unten */

.career-form-actions {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(210px, 1.4fr);
    gap: 16px;
    margin-top: 4px;
}

.career-form-actions .career-submit-button,
.career-form-actions .career-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    color: #ffffff;
    border-radius: 24px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.career-form-actions .career-submit-button {
    color: #ffffff;
    background: #387dff;
    border: 1px solid #387dff;
}

.career-form-actions .career-whatsapp-button {
    color: #ffffff;
    background: #12c985;
    border: 1px solid #12c985;
}

/* Beide Icon-Arten erfassen: SVG und IMG */

.career-submit-button svg,
.career-whatsapp-button svg,
.career-whatsapp-button img,
.career-button-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}

/* Schwarzes WhatsApp-Icon weiÃƒÅ¸ darstellen */

.career-whatsapp-button img {
    filter: brightness(0) invert(1);
}

.career-submit-button:hover {
    color: #ffffff;
    background: #2057be;
    border-color: #2057be;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(12, 40, 93, 0.16);
}

.career-whatsapp-button:hover {
    color: #ffffff;
    background: #0fae74;
    border-color: #0fae74;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(18, 201, 133, 0.2);
}

.career-required-note {
    margin: 0;
    color: #8792a2;
    font-size: 11px;
}

/* =========================================
Kontakt und Standort
========================================= */

.location-section {
padding: 105px 0 120px;
background-color: #F5F7FB;
}

.location-heading {
max-width: 760px;
margin: 0 auto 58px;
text-align: center;
}

.location-label {
display: inline-block;
margin-bottom: 18px;

color: #387DFF;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;

}

.location-heading h2 {
margin: 0;

color: #151827;
font-size: 40px;
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.025em;

}

.location-heading p {
margin: 14px auto 0;

color: #697386;
font-size: 15px;
line-height: 1.65;

}

/* Standortkarte */

.location-card {
width: min(520px, 100%);
margin: 0 auto;

overflow: hidden;

background-color: #FFFFFF;
border: 1px solid #E3E7EF;
border-radius: 18px;
box-shadow: 0 10px 35px rgba(12, 40, 93, 0.06);

transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;

}

.location-card:hover {
transform: translateY(-3px);
box-shadow: 0 18px 42px rgba(12, 40, 93, 0.1);
}

/* Kartenkopf */

.location-card-header {
padding: 28px 30px 22px;
border-bottom: 1px solid #E8ECF2;
}

.location-badge {
display: inline-flex;
align-items: center;
justify-content: center;

min-height: 28px;
margin-bottom: 18px;
padding: 0 14px;

color: #2057BE;
background-color: #DCE8FF;
border-radius: 20px;

font-size: 10px;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;

}

.location-card-header h3 {
margin: 0;

color: #1B1F2D;
font-size: 21px;
font-weight: 700;
line-height: 1.3;

}

/* Kontaktdaten */

.location-details {
display: flex;
flex-direction: column;
gap: 22px;

padding: 25px 30px 28px;

}

.location-detail {
display: flex;
align-items: flex-start;
gap: 15px;
}

.location-detail-icon {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 21px;

width: 25px;
height: 25px;
margin-top: 1px;

color: #387DFF;

}

.location-detail-icon svg {
display: block;
width: 30px;
height: 30px;
stroke: currentColor;
}

.location-detail-content {
display: flex;
flex-direction: column;
gap: 5px;

min-width: 0;

}

.location-detail-label {
color: #697386;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.07em;
text-transform: uppercase;
}

.location-detail-content address,
.location-detail-content a {
margin: 0;

color: #303747;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 1.55;
text-decoration: none;

}

.location-detail-content a {
transition: color 0.25s ease;
}

.location-detail-content a:hover {
color: #2057BE;
}

/* Google Maps */

.location-map {
position: relative;

width: 100%;
height: 290px;

overflow: hidden;
background-color: #E8ECF2;

}

.location-map iframe {
display: block;
width: 100%;
height: 100%;

border: 0;

}

/* Maps öffnen*/

.location-map-link {
position: absolute;
top: 12px;
left: 12px;
z-index: 2;

display: inline-flex;
align-items: center;
gap: 5px;

min-height: 34px;
padding: 0 11px;

color: #2057BE;
background-color: rgba(255, 255, 255, 0.96);
border: 1px solid #E4E8EF;
border-radius: 5px;
box-shadow: 0 4px 14px rgba(12, 40, 93, 0.13);

font-size: 11px;
font-weight: 700;
text-decoration: none;

transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.35s ease;

}

.location-map-link:hover {
color: #FFFFFF;
background-color: #387DFF;
transform: translateY(-1px);
}

/* Schwebender Anrufen-Button */

.location-call-button {
position: absolute;
right: 16px;
bottom: 16px;
z-index: 2;

display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;

min-height: 46px;
padding: 0 21px;

color: #FFFFFF;
background-color: #2057BE;
border: 1px solid #2057BE;
border-radius: 24px;
box-shadow: 0 8px 22px rgba(12, 40, 93, 0.25);

font-size: 13px;
font-weight: 700;
text-decoration: none;

transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;

}

.location-call-button svg {
width: 17px;
height: 17px;
flex-shrink: 0;

stroke: currentColor;

}

.location-call-button:hover {
color: #FFFFFF;
background-color: #144399;

transform: translateY(-2px);
box-shadow: 0 11px 26px rgba(12, 40, 93, 0.3);

}

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

.site-footer {
background: linear-gradient(
135deg,
#2057BE 0%,
#2B68D6 55%,
#387DFF 100%
);
}
/* Dezente Hintergrundform */

.site-footer::before {
content: "";
position: absolute;
top: -180px;
right: -140px;

width: 440px;
height: 440px;

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 50%;

}

.site-footer::after {
content: "";
position: absolute;
right: 65px;
bottom: -280px;

width: 520px;
height: 520px;

background-color: rgba(255, 255, 255, 0.025);
border-radius: 50%;

}

.footer-container {
position: relative;
z-index: 1;

display: grid;
grid-template-columns:
    minmax(270px, 1.5fr)
    minmax(150px, 0.75fr)
    minmax(200px, 1fr)
    minmax(160px, 0.8fr);

gap: 70px;

padding-top: 76px;
padding-bottom: 62px;

}

/* Logo und Beschreibung */

.footer-brand {
max-width: 340px;
}

.footer-logo {
display: inline-flex;
margin-bottom: 0px;
}

.footer-logo img {
display: block;
width: 400px;
height:100px ;
max-height: 250px;
object-fit: contain;
object-position: left;
margin-bottom:0px ;
}

.footer-brand > p {
margin: 0;

color: rgba(255, 255, 255, 0.76);
font-size: 15px;
line-height: 1.8;

}

/* Telefonnummer */

.footer-phone {
display: inline-flex;
flex-direction: column;
gap: 4px;

margin-top: 27px;


text-decoration: none;

}

.footer-phone span {
color: rgba(255, 255, 255, 0.65);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.footer-phone strong {
color: #FFFFFF;
font-size: 18px;
font-weight: 700;
}

/* Spalten */

.footer-column h3 {
position: relative;

margin: 5px 0 15px;
padding-bottom: 14px;

color: #FFFFFF;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.07em;
text-transform: uppercase;

}

/* Navigation */

.footer-links {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 15px;
}

.footer-links a,
.footer-modal-link {
position: relative;

padding: 0;

color: rgba(255, 255, 255, 0.75);
background: none;
border: 0;

font-family: inherit;
font-size: 15px;
font-weight: 500;
line-height: 1.4;
text-align: left;
text-decoration: none;
cursor: pointer;

transition:
    color 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

}

.footer-links a:hover,
.footer-modal-link:hover {
color: #FFFFFF;
transform: translateX(4px);
}

/* Kontaktinformationen */

.footer-contact {
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-contact-item {
display: flex;
flex-direction: column;
gap: 6px;
}

.footer-contact-item span {
color: #78A7FF;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.07em;
text-transform: uppercase;
}

.footer-contact-item address,
.footer-contact-item a {
margin: 0;

color: rgba(255, 255, 255, 0.78);
font-size: 15px;
font-style: normal;
line-height: 1.55;
text-decoration: none;

}

.footer-contact-item a {
transition: color 0.3s ease;
}

.footer-contact-item a:hover {
color: #FFFFFF;
}

/* Kontaktbutton */

.footer-contact-button {
display: inline-flex;
align-items: center;
justify-content: center;

min-height: 43px;
margin-top: 28px;
padding: 0 19px;

color: #144399;
background-color: #FFFFFF;
border: 1px solid #FFFFFF;
border-radius: 24px;

font-size: 10px;
font-weight: 700;
text-decoration: none;

transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;

}

.footer-contact-button:hover {
color: #FFFFFF;
background-color: transparent;

transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);

}

/* Untere Leiste */

.footer-bottom {
position: relative;
z-index: 1;

display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;

padding-top: 23px;
padding-bottom: 23px;

border-top: 1px solid rgba(255, 255, 255, 0.14);

}

.footer-bottom p {
margin: 0;

color: rgba(255, 255, 255, 0.58);
font-size: 11px;

}

.footer-top-link {
display: inline-flex;
align-items: center;
gap: 8px;

color: rgba(255, 255, 255, 0.72);
font-size: 11px;
font-weight: 700;
text-decoration: none;

transition:
    color 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

}

.footer-top-link span {
display: inline-flex;
align-items: center;
justify-content: center;

width: 27px;
height: 27px;

color: #FFFFFF;
background-color: rgba(255, 255, 255, 0.12);
border-radius: 50%;

}

.footer-top-link:hover {
color: #FFFFFF;
transform: translateY(-2px);
}

/* =========================================
LEISTUNGEN DETAILSEITE
========================================= */

/* =========================================
HERO
========================================= */

.services-page-hero {
position: relative;

min-height: 620px;

display: flex;
align-items: center;

overflow: hidden;

background-image: url("../assets/images/hero-pflege.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.services-page-hero-overlay {
position: absolute;
inset: 0;

background-color: rgba(38, 67, 100, 0.72);

}

.services-page-hero-container {
position: relative;
z-index: 1;

width: 100%;

}

.services-page-hero-content {
max-width: 760px;
margin: 0 auto;
padding: 100px 0;
text-align: center;

}

.services-page-eyebrow {
display: inline-block;

margin-bottom: 18px;

color: #FFFFFF;

font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;

}

.services-page-hero h1 {
margin: 0;

color: #FFFFFF;

font-size: clamp(44px, 5vw, 66px);
line-height: 1.05;
letter-spacing: -0.035em;

}

.services-page-hero-content > p {
max-width: 650px;

margin: 24px auto 0;

color: rgba(255, 255, 255, 0.92);

font-size: 18px;
line-height: 1.65;

}

.services-page-hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;

margin-top: 34px;

}

/* =========================================
BUTTONS
========================================= */

.services-page-primary-button,
.services-page-secondary-button {
min-height: 52px;

display: inline-flex;
align-items: center;
justify-content: center;

gap: 9px;

padding: 13px 22px;

border-radius: 26px;

font-size: 15px;
font-weight: 600;

transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;

}

.services-page-primary-button {
color: #FFFFFF;
background-color: #387DFF;
border: 1.5px solid #387DFF;
}

.services-page-secondary-button {
color: #FFFFFF;
background-color: transparent;
border: 1.5px solid #FFFFFF;
}

.services-page-primary-button:hover {
background-color: #144399;
border-color: #144399;

transform: translateY(-2px);

}

.services-page-secondary-button:hover {
color: #3C5C7D;
background-color: #FFFFFF;

transform: translateY(-2px);

}

.services-page-primary-button img,
.services-page-secondary-button svg {
width: 19px;
height: 19px;

flex-shrink: 0;

}

/* =========================================
INTRO
========================================= */

.services-intro {
padding: 100px 0;
background-color: #FFFFFF;

}

.services-intro-heading {
max-width: 760px;
margin: 0 auto 55px;

text-align: center;

}

.services-intro-heading > span,
.services-process-heading > span,
.services-final-cta-content > span {
display: inline-block;

margin-bottom: 16px;

color: #387DFF;

font-size: 13px;
font-weight: 700;

letter-spacing: 0.05em;
text-transform: uppercase;

}

.services-intro-heading h2,
.services-process-heading h2 {
margin: 0;

color: #171717;

font-size: clamp(38px, 4vw, 54px);
line-height: 1.1;
letter-spacing: -0.03em;

}

.services-intro-heading p {
max-width: 650px;

margin: 22px auto 0;

color: #626872;

font-size: 17px;
line-height: 1.7;

}

.services-intro-grid {
display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 20px;

}

.services-intro-item {
padding: 28px 24px;

background-color: #F5F8FD;

border: 1px solid #DCE7F8;
border-radius: 16px;

text-align: center;

}

.services-intro-item strong {
display: block;

margin-bottom: 8px;

color: #0C285D;

font-size: 16px;

}

.services-intro-item span {
color: #66758A;

font-size: 14px;
line-height: 1.55;

}

/* =========================================
DETAIL LEISTUNGEN
========================================= */

.services-detail-section {
padding: 110px 0;

background-color: #F7F9FC;

}

.service-detail {
display: grid;

grid-template-columns:
    minmax(300px, 0.8fr)
    minmax(0, 1.2fr);

align-items: center;

gap: 75px;

padding: 70px 0;

border-bottom: 1px solid #DFE7F1;

}

.service-detail:first-child {
padding-top: 0;
}

.service-detail:last-child {
padding-bottom: 0;

border-bottom: 0;

}

.service-detail-reverse .service-detail-visual {
order: 2;
}

.service-detail-reverse .service-detail-content {
order: 1;
}

/* Visual */

.service-detail-visual {
min-height: 330px;

display: flex;
align-items: center;
justify-content: center;

background:
    linear-gradient(
        145deg,
        #DCEAFF,
        #F2F7FF
    );

border-radius: 24px;

}

.service-detail-icon {
width: 110px;
height: 110px;

display: flex;
align-items: center;
justify-content: center;

color: #387DFF;

background-color: #FFFFFF;

border-radius: 28px;

box-shadow: 0 16px 40px rgba(12, 40, 93, 0.12);

}

.service-detail-icon svg {
width: 52px;
height: 52px;
}

/* Content */

.service-detail-content {
max-width: 600px;
}

.service-detail-label {
display: inline-block;

margin-bottom: 14px;

color: #387DFF;

font-size: 12px;
font-weight: 700;

letter-spacing: 0.06em;
text-transform: uppercase;

}

.service-detail-content h2 {
margin: 0;

color: #171717;

font-size: clamp(34px, 3.5vw, 48px);
line-height: 1.1;
letter-spacing: -0.025em;

}

.service-detail-content > p {
margin: 20px 0 0;

color: #626872;

font-size: 16px;
line-height: 1.7;

}

.service-detail-list {
display: grid;

gap: 12px;

margin-top: 26px;

}

.service-detail-list li {
position: relative;

padding-left: 28px;

color: #344054;

font-size: 15px;
line-height: 1.5;

}

.service-detail-list li::before {
content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";

position: absolute;
left: 0;
top: 0;

color: #387DFF;

font-weight: 800;

}

/* =========================================
ABLAUF
========================================= */

.services-process {
padding: 105px 0;

background-color: #FFFFFF;

}

.services-process-heading {
max-width: 700px;

margin: 0 auto 55px;

text-align: center;

}

.services-process-grid {
display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 18px;

}

.process-card {
padding: 30px 24px;

background-color: #F7F9FC;

border: 1px solid #E0E8F3;
border-radius: 18px;

}

.process-number {
display: inline-block;

margin-bottom: 24px;

color: #387DFF;

font-size: 14px;
font-weight: 800;

}

.process-card h3 {
margin: 0 0 12px;

color: #0C285D;

font-size: 18px;

}

.process-card p {
margin: 0;

color: #66758A;

font-size: 14px;
line-height: 1.6;

}

/* =========================================
FINAL CTA
========================================= */

.services-final-cta {
padding: 100px 0;

background-color: #0C285D;

}

.services-final-cta-content {
max-width: 760px;

margin: 0 auto;

text-align: center;

}

.services-final-cta-content > span {
color: #AFCBFF;
}

.services-final-cta h2 {
margin: 0;

color: #FFFFFF;

font-size: clamp(38px, 4vw, 54px);
line-height: 1.1;

}

.services-final-cta p {
max-width: 620px;

margin: 22px auto 0;

color: rgba(255, 255, 255, 0.82);

font-size: 17px;
line-height: 1.65;

}

.services-final-actions {
display: flex;
justify-content: center;

gap: 14px;

margin-top: 32px;

}

/* =========================
Hamburger-MenÃƒÆ’Ã‚Â¼
========================= */

.site-header {
position: relative;
z-index: 1000;
background-color: #FFFFFF;
}

.mobile-menu-toggle {
display: none;
position: relative;

width: 44px;
height: 44px;
padding: 0;

background: transparent;
border: 0;
cursor: pointer;

}

.mobile-menu-toggle span {
position: absolute;
left: 10px;

width: 24px;
height: 2px;

background-color: #0C285D;
border-radius: 20px;

transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;

}

.mobile-menu-toggle span:nth-child(1) {
top: 13px;
}

.mobile-menu-toggle span:nth-child(2) {
top: 21px;
}

.mobile-menu-toggle span:nth-child(3) {
top: 29px;
}

/* Hamburger wird zum X */

.mobile-menu-toggle.is-active span:nth-child(1) {
top: 21px;
transform: rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
top: 21px;
transform: rotate(-45deg);
}

/* Mobile Navigation standardmÃƒÆ’Ã‚Â¤ÃƒÆ’Ã…Â¸ig geschlossen */

.mobile-navigation {
display: none;
}

@media (min-width: 768px) and (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
    }
}

@media (max-width: 767px) {

/* =========================
   HEADER MOBILE
========================= */

.header-container {
    min-height: 72px;
    gap: 8px;
}

/* Logo */
.header-logo {
    width: 145px;
    flex-shrink: 0;
}

/* Desktop Navigation ausblenden */
.desktop-navigation {
    display: none;
}

/* Desktop Buttons komplett ausblenden */
.header-actions {
    display: none;
}

/* Hamburger anzeigen */
.mobile-menu-toggle {
    display: block;

    width: 44px;
    height: 44px;
    margin-left: auto;

    flex-shrink: 0;
    z-index: 1002;
}


/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;

    display: block;
    width: 100%;

    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 12px 25px rgba(12, 40, 93, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

/* MenÃƒÆ’Ã‚Â¼ geÃƒÆ’Ã‚Â¶ffnet */
.mobile-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

/* =========================
MOBILE MENU INHALT
========================= */

.mobile-navigation-inner {
display: flex;
flex-direction: column;

padding-top: 16px;
padding-bottom: 22px;

}

/* MenÃƒÆ’Ã‚Â¼links */
.mobile-navigation-inner > a:not(.mobile-call-button) {
display: flex;
align-items: center;

width: 100%;
min-height: 48px;
padding: 12px 8px;

color: #0C285D;
border-bottom: 1px solid #EEF1F5;

font-size: 15px;
font-weight: 600;
text-decoration: none;

}

/* =========================
BUTTONS IM HAMBURGER
========================= */

.mobile-navigation-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;

width: 100%;
margin-top: 22px;

}

.mobile-call-button,
.mobile-patient-button {
display: flex;
align-items: center;
justify-content: center;
gap: 9px;

width: 100%;
max-width: 320px;
min-height: 52px;

padding: 13px 18px;

border-radius: 24px;

font-family: inherit;
font-size: 14px;
font-weight: 500;
line-height: 1.2;
text-align: center;
text-decoration: none;

cursor: pointer;

}

/* Icons */
.mobile-call-button svg,
.mobile-patient-button img {
display: block;
width: 18px;
height: 18px;
flex-shrink: 0;
}

/* Jetzt anrufen */
.mobile-call-button {
color: #FFFFFF;
background-color: transparent;
border: 1.5px solid #387DFF;
color: #387DFF;
}

.mobile-call-button svg {
fill: none;
stroke: currentColor;
}

/* Patientenaufnahme */
.mobile-patient-button {
color: #FFFFFF;
background-color: #387DFF;
border: 1.5px solid #387DFF;
}

/* =========================
HOVER MOBILE BUTTONS
========================= */

/* Jetzt anrufen */
.mobile-call-button:hover {
color: #FFFFFF;
background-color: #387DFF;
border-color: #387DFF;
transform: translateY(-2px);
}

/* Patientenaufnahme */
.mobile-patient-button:hover {
color: #FFFFFF;
background-color: #144399;
border-color: #144399;
transform: translateY(-2px);
}

/* Weiche Animation */
.mobile-call-button,
.mobile-patient-button {
transition:
background-color 0.2s ease,
border-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease;
}

/* =========================
   HERO MOBILE
========================= */

.hero {
    min-height: calc(100svh - 72px);
    background-position: center;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 70px 0;
}

.hero-eyebrow {
    margin-bottom: 16px;
    padding: 8px 13px;

    font-size: 12px;
}

.hero-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
}

.hero-description {
    margin-top: 18px;

    font-size: 16px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    gap: 12px;
    margin-top: 28px;
}

.hero-primary-button,
.hero-secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 320px;
    min-height: 52px;

    padding: 13px 18px;

    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
}

.hero-primary-button img,
.hero-secondary-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

/* =========================
MODAL MOBILE
========================= */

.patient-modal {
padding: 10px;
align-items: flex-start;
}

.patient-modal-dialog {
width: 100%;
max-width: 100%;
max-height: calc(100dvh - 20px);

margin-top: 10px;

border-radius: 16px;

}

.patient-modal-content {
padding: 24px 18px 22px;
}

/* Close Button */
.patient-modal-close {
top: 10px;
right: 10px;

width: 36px;
height: 36px;

font-size: 25px;

}

/* =========================
MODAL HEADING
========================= */

.section-heading {
padding-right: 42px;
padding-bottom: 18px;
}

.section-label {
font-size: 12px;
}

.section-heading h2 {
font-size: 22px;
line-height: 1.2;
}

.section-heading p {
font-size: 13px;
line-height: 1.5;
}

/* =========================
FORMULAR MOBILE
========================= */

.patient-form {
gap: 20px;
margin-top: 20px;
}

.form-section {
padding-bottom: 18px;
}

.form-section h3,
.form-section-title {
font-size: 13px;
margin-bottom: 12px;
}

/* Zwei Spalten -> eine Spalte */
.form-grid {
grid-template-columns: 1fr;
gap: 14px;
}

.form-group-full {
grid-column: auto;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
min-height: 48px;
padding: 12px 13px;

font-size: 16px;

}

/* verhindert iPhone Zoom bei Focus */
.form-group textarea {
min-height: 110px;
}

/* =========================
LEISTUNGEN / CHECKBOXEN
========================= */

.services-list {
grid-template-columns: 1fr;
gap: 12px;
}

.service-checkbox {
font-size: 13px;
}

/* =========================
DATENSCHUTZ
========================= */

.privacy-checkbox {
padding: 13px;

font-size: 11px;
line-height: 1.5;

}

/* =========================
FORM BUTTONS
========================= */

.form-actions {
grid-template-columns: 1fr;
gap: 10px;
}

.form-submit-button,
.form-cancel-button {
min-height: 50px;

font-size: 14px;

}

/* =========================
INFO BOX
========================= */

.form-info-box {
padding: 12px;

font-size: 11px;
line-height: 1.5;

}

.required-note {
font-size: 10px;
}

/* =========================
TRUST SECTION MOBILE
========================= */

.trust-section {
margin-top: -24px;
}

.trust-panel {
grid-template-columns: 1fr;

min-height: 0;
padding: 10px 18px;

border-radius: 16px;

}

/* Einzelne Trust Items */
.trust-item {
width: 100%;
min-width: 0;

justify-content: flex-start;

padding: 16px 4px;
gap: 14px;

}

/* Desktop-Trennlinien entfernen */
.trust-item:not(:last-child)::after {
display: none;
}

/* Horizontale Trennlinie zwischen Items */
.trust-item:not(:last-child) {
border-bottom: 1px solid #E7EDF5;
}

/* Icon */
.trust-icon {
width: 42px;
height: 42px;

flex: 0 0 42px;
border-radius: 10px;

}

.trust-icon img {
width: 21px;
height: 21px;
}

/* Text */
.trust-text {
align-items: flex-start;
gap: 3px;

text-align: left;

}

.trust-text strong {
font-size: 14px;
line-height: 1.3;

white-space: normal;

}

.trust-text span {
font-size: 12px;
line-height: 1.4;

white-space: normal;

}

/* =========================
ÃƒÆ’Ã…â€œBER UNS MOBILE
========================= */

.about-section {
padding: 70px 0 80px;
}

.about-container {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}

/* Bild */
.about-image-wrapper {
width: 100%;
border-radius: 14px;
}

.about-image {
width: 100%;
height: 320px;
object-fit: cover;
object-position: center;
}

/* Textbereich */
.about-content {
padding-top: 0;
}

.about-eyebrow {
margin-bottom: 14px;

font-size: 12px;

}

/* ÃƒÆ’Ã…â€œberschrift */
.about-title {
margin-bottom: 20px;

font-size: 34px;
line-height: 1.1;
letter-spacing: -0.02em;

}

/* Text */
.about-text {
max-width: 100%;
margin-bottom: 18px;

font-size: 16px;
line-height: 1.65;

}

/* GeschÃƒÆ’Ã‚Â¤ftsfÃƒÆ’Ã‚Â¼hrer */
.about-director {
margin-top: 30px;

font-size: 13px;
line-height: 1.6;

}

/* =========================
LEISTUNGEN MOBILE
========================= */

.services-preview {
padding: 75px 0 80px;
}

/* ÃƒÆ’Ã…â€œberschrift */
.services-preview-header {
max-width: 100%;
margin: 0 auto 40px;
text-align: center;
}

.services-eyebrow {
margin-bottom: 14px;
font-size: 12px;
}

.services-title {
font-size: 34px;
line-height: 1.1;
letter-spacing: -0.02em;
}

.services-description {
max-width: 100%;
margin-top: 18px;

font-size: 15px;
line-height: 1.6;

}

/* =========================
CARDS
========================= */

.services-grid {
grid-template-columns: 1fr;
gap: 16px;
}

/* Alle Cards Mobile */
.service-card {
min-height: 0;

padding: 24px 20px;

text-align: left;
border-radius: 16px;

}

/* Desktop-Sonderpositionen entfernen */
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
grid-column: auto;
margin-top: 0;
}

/* Icon */
.service-icon {
width: 44px;
height: 44px;

margin-bottom: 16px;

border-radius: 10px;

}

.service-icon svg {
width: 24px;
height: 24px;
}

/* Card ÃƒÆ’Ã…â€œberschrift */
.service-card h3 {
margin-bottom: 10px;

font-size: 18px;
line-height: 1.3;

}

/* Card Text */
.service-card p {
font-size: 14px;
line-height: 1.65;
}

/* =========================
UNSER TEAM MOBILE
========================= */

.team-section {
padding: 75px 0 80px;
}

/* ÃƒÆ’Ã…â€œberschrift */
.team-heading {
max-width: 100%;
margin: 0 auto 30px;
text-align: center;
}

.team-label {
margin-bottom: 14px;
font-size: 12px;
}

.team-heading h2 {
font-size: 34px;
line-height: 1.1;
letter-spacing: -0.02em;
}

.team-heading p {
max-width: 100%;
margin-top: 18px;

font-size: 15px;
line-height: 1.65;

}

/* =========================
TEAM BILD
========================= */

.team-image-wrapper {
width: 100%;
border-radius: 16px;
}

.team-image {
width: 100%;
height: 320px;

object-fit: cover;
object-position: center;

}

/* =========================
KARRIERE MOBILE
========================= */

.career-section {
padding: 75px 0 80px;
}

/* 2 Spalten -> 1 Spalte */
.career-container {
grid-template-columns: 1fr;
gap: 40px;
}

/* Linker Bereich */
.career-content {
padding-top: 0;
}

.career-label {
margin-bottom: 14px;
font-size: 12px;
}

.career-content h2 {
font-size: 34px;
line-height: 1.1;
letter-spacing: -0.02em;
}

.career-content p {
max-width: 100%;
margin-top: 18px;

font-size: 15px;
line-height: 1.65;

}

/* Vorteile */
.career-benefits {
gap: 18px;
margin-top: 28px;
}

.career-benefit {
gap: 12px;

font-size: 14px;
line-height: 1.5;

}

.career-benefit svg {
width: 20px;
height: 20px;
}

/* Hauptbutton */
.career-main-button {
width: 100%;
max-width: 320px;

min-height: 50px;
margin-top: 30px;

font-size: 14px;

}

/* =========================
FORMULAR-KARTE MOBILE
========================= */

.career-form-card {
width: 100%;

padding: 28px 18px 24px;

border-radius: 20px;

}

.career-form-card h3 {
margin-bottom: 24px;

font-size: 17px;

}

/* Formular */
.career-form {
gap: 18px;
}

.career-field {
gap: 7px;
}

.career-field label {
font-size: 13px;
}

/* Inputs */
.career-field input,
.career-field select,
.career-field textarea {
min-height: 50px;

padding: 12px 13px;

font-size: 16px;

}

.career-field textarea {
min-height: 130px;
}

/* =========================
DATENSCHUTZ
========================= */

.career-privacy {
gap: 9px;

font-size: 11px;
line-height: 1.5;

}

/* =========================
BUTTONS FORMULAR
========================= */

.career-form-actions {
grid-template-columns: 1fr;
gap: 10px;

margin-top: 6px;

}

.career-submit-button,
.career-whatsapp-button {
width: 100%;
min-height: 50px;

padding: 0 16px;

font-size: 14px;

}

.career-submit-button svg,
.career-whatsapp-button svg,
.career-whatsapp-button img {
width: 20px;
height: 20px;
}

/* Pflichtfeld-Hinweis */
.career-required-note {
font-size: 10px;
}

/* =========================
FOOTER MOBILE
========================= */

.site-footer {
overflow: hidden;
}

/* Desktop-Deko etwas kleiner */
.site-footer::before {
top: -120px;
right: -180px;

width: 320px;
height: 320px;

}

.site-footer::after {
right: -140px;
bottom: -220px;

width: 380px;
height: 380px;

}

/* =========================
FOOTER INHALT
========================= */

.footer-container {
grid-template-columns: 1fr;
gap: 38px;

padding-top: 55px;
padding-bottom: 42px;

}

/* =========================
BRAND / LOGO
========================= */

.footer-brand {
max-width: 100%;
}

.footer-logo {
margin-bottom: 12px;
}

.footer-logo img {
width: 220px;
height: auto;
max-height: none;

object-fit: contain;

}

.footer-brand > p {
max-width: 100%;

font-size: 14px;
line-height: 1.7;

}

/* Telefonnummer */
.footer-phone {
margin-top: 22px;
gap: 5px;
}

.footer-phone span {
font-size: 10px;
}

.footer-phone strong {
font-size: 18px;
}

/* =========================
FOOTER SPALTEN
========================= */

.footer-column h3 {
margin-top: 0;
margin-bottom: 14px;
padding-bottom: 10px;

font-size: 14px;

}

/* Navigation */
.footer-links {
gap: 12px;
}

.footer-links a,
.footer-modal-link {
font-size: 14px;
line-height: 1.5;
}

/* =========================
KONTAKT
========================= */

.footer-contact {
gap: 18px;
}

.footer-contact-item {
gap: 5px;
}

.footer-contact-item span {
font-size: 11px;
}

.footer-contact-item address,
.footer-contact-item a {
font-size: 14px;
line-height: 1.5;
}

/* =========================
FOOTER BUTTON
========================= */

.footer-contact-button {
width: 100%;
max-width: 320px;

min-height: 48px;
margin-top: 20px;

font-size: 13px;

}

/* =========================
FOOTER BOTTOM
========================= */

.footer-bottom {
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;

gap: 14px;

padding-top: 20px;
padding-bottom: 24px;

}

.footer-bottom p {
font-size: 10px;
line-height: 1.5;
}

.footer-top-link {
font-size: 11px;
}

.footer-top-link span {
width: 30px;
height: 30px;
}

/* =========================================
   LEISTUNGSDETAILSEITE MOBILE
========================================= */

.services-page-hero {
    min-height: 520px;
}

.services-page-hero-content {
    padding: 75px 0;
}

.services-page-hero h1 {
    font-size: 38px;
}

.services-page-hero-content > p {
    font-size: 16px;
}

.services-page-hero-actions,
.services-final-actions {
    flex-direction: column;
    align-items: center;
}

.services-page-primary-button,
.services-page-secondary-button {
    width: 100%;
    max-width: 320px;
}

.services-intro {
    padding: 75px 0;
}

.services-intro-heading {
    margin-bottom: 35px;
}

.services-intro-heading h2,
.services-process-heading h2 {
    font-size: 34px;
}

.services-intro-heading p {
    font-size: 15px;
}

.services-intro-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail,
.service-detail-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 0;
}

.service-detail-reverse .service-detail-visual,
.service-detail-reverse .service-detail-content {
    order: initial;
}

.service-detail-visual {
    min-height: 230px;
    border-radius: 18px;
}

.service-detail-icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
}

.service-detail-icon svg {
    width: 42px;
    height: 42px;
}

.service-detail-content h2 {
    font-size: 32px;
}

.service-detail-content > p {
    font-size: 15px;
}

.service-detail-list li {
    font-size: 14px;
}

.services-process {
    padding: 80px 0;
}

.services-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}

.services-final-cta {
    padding: 80px 0;
}

.services-final-cta h2 {
    font-size: 34px;
}

.services-final-cta p {
    font-size: 15px;
}
}

/* Leistungskarten: klarer Mehr-erfahren-Button */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: inherit;
}

.service-card p {
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    margin-top: 22px;
    padding: 10px 16px;
    color: var(--button-bg);
    background-color: var(--button-light);
    border: 1.5px solid var(--button-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
    color: var(--white);
    background-color: var(--button-hover);
    border-color: var(--button-hover);
    transform: translateY(-2px);
}

.service-page-back {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: #2057BE;
    font-size: 14px;
    font-weight: 700;
}

.services-overview-page {
    padding-top: 105px;
    padding-bottom: 110px;
}

/* Footer: eigene Spalte fÃƒÆ’Ã‚Â¼r alle Leistungen */
.footer-container {
    grid-template-columns:
        minmax(220px, 1.3fr)
        minmax(115px, 0.65fr)
        minmax(155px, 0.95fr)
        minmax(175px, 1fr)
        minmax(140px, 0.8fr);
    gap: 36px;
}

.footer-services-column .footer-links {
    gap: 11px;
}

.footer-services-column .footer-links a {
    font-size: 14px;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 56px;
        row-gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 767px) {
    .service-card-link {
        align-self: flex-start;
    }

    .services-overview-page {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* Schlichte, websitekonforme Leistungsseiten */
.service-page-section {
    padding: 105px 0;
    background-color: #FFFFFF;
}

.service-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
    align-items: start;
    gap: 72px;
}

.service-page-copy {
    max-width: 760px;
}

.service-page-intro {
    margin: 0 0 46px;
    color: #344054;
    font-size: 20px;
    line-height: 1.75;
}

.service-page-copy-section {
    padding: 42px 0;
    border-top: 1px solid #E3EAF3;
}

.service-page-copy-section h2,
.service-page-related h2 {
    margin: 0 0 22px;
    color: #171717;
    font-size: clamp(34px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.service-page-copy-section p {
    margin: 0 0 18px;
    color: #5F6978;
    font-size: 16px;
    line-height: 1.75;
}

.service-page-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
}

.service-page-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 28px;
    padding-left: 0;
    color: #344054;
    font-size: 15px;
    line-height: 1.7;
}

.service-page-list li::before {
    content: none;
    display: none;
}

.service-page-check-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    color: #2057BE;
}

.service-page-faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #E3EAF3;
}

.service-page-faq-item:last-child {
    border-bottom: 0;
}

.service-page-faq-item h3 {
    margin: 0 0 10px;
    color: #0C285D;
    font-size: 18px;
    line-height: 1.4;
}

.service-page-faq-item p {
    margin-bottom: 0;
}

.service-page-sidebar {
    position: sticky;
    top: 30px;
}

.service-page-contact-box {
    padding: 32px 28px;
    background-color: #F5F8FD;
    border: 1px solid #D7E4F6;
    border-radius: 18px;
}

.service-page-contact-box > span {
    color: #387DFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-page-contact-box h2 {
    margin: 12px 0 14px;
    color: #0C285D;
    font-size: 26px;
    line-height: 1.2;
}

.service-page-contact-box p {
    margin: 0 0 24px;
    color: #66758A;
    font-size: 14px;
    line-height: 1.65;
}

.service-page-contact-primary,
.service-page-contact-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 10px;
    padding: 11px 17px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
}

.service-page-contact-primary {
    color: #FFFFFF;
    background-color: #387DFF;
    border: 1px solid #387DFF;
}

.service-page-contact-secondary {
    color: #2057BE;
    background-color: #FFFFFF;
    border: 1px solid #BFD2EF;
}

.service-page-contact-primary:hover {
    background-color: #144399;
    border-color: #144399;
}

.service-page-contact-secondary:hover {
    color: #FFFFFF;
    background-color: #2057BE;
    border-color: #2057BE;
}

.service-page-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #D7E4F6;
}

.service-page-address-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #2057BE;
    background-color: #D2E2FF;
    border-radius: 50%;
}

.service-page-address-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.service-page-address address {
    margin: 0;
    color: #66758A;
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
}

.service-page-related {
    padding-top: 42px;
    border-top: 1px solid #E3EAF3;
}

.service-page-related > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-page-related a {
    padding: 9px 14px;
    color: #2057BE;
    background-color: #F5F8FD;
    border: 1px solid #D7E4F6;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-page-related a:hover {
    color: #FFFFFF;
    background-color: #2057BE;
    border-color: #2057BE;
}

.service-page-availability {
    min-height: 360px;
}

@media (max-width: 900px) {
    .service-page-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-page-copy {
        max-width: none;
    }

    .service-page-sidebar {
        position: static;
    }

    .service-page-contact-box {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .service-page-section {
        padding: 75px 0;
    }

    .service-page-intro {
        margin-bottom: 34px;
        font-size: 17px;
        line-height: 1.7;
    }

    .service-page-copy-section {
        padding: 34px 0;
    }

    .service-page-copy-section h2,
    .service-page-related h2 {
        font-size: 28px;
    }

    .service-page-contact-box {
        padding: 26px 20px;
    }
}

/* =========================
   COOKIE-CONSENT UND GOOGLE MAPS
========================= */


/* =========================
   GOOGLE MAPS
========================= */

.map-consent-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 28px;

    color: #303747;

    background-color: #F5F8FD;

    text-align: center;
}


.map-consent-placeholder[hidden],
.location-map iframe[hidden],
.cookie-consent[hidden],
.cookie-settings-panel[hidden] {
    display: none;
}


.map-consent-placeholder strong {
    color: #0C285D;

    font-size: 18px;
}


.map-consent-placeholder p {
    max-width: 460px;

    margin: 10px auto 18px;

    color: #606875;

    font-size: 13px;
    line-height: 1.6;
}


.map-consent-button {
    min-height: 42px;

    padding: 9px 18px;

    color: #FFFFFF;

    background-color: var(--heading-color);

    border: 1px solid var(--heading-color);
    border-radius: 22px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.map-consent-button:hover,
.map-consent-button:focus-visible {
    background-color: var(--button-hover);

    border-color: var(--button-hover);

    transform: translateY(-2px);
}



/* =========================
   COOKIE OVERLAY
========================= */

.cookie-consent {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 24px;

    color: #303747;

    background-color: rgba(12, 40, 93, 0.22);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


body.cookie-consent-open {
    overflow: hidden;
}



/* =========================
   COOKIE KARTE
========================= */

.cookie-consent-inner {
    width: min(590px, 100%);

    max-height: calc(100dvh - 48px);

    overflow-y: auto;

    padding: 34px 36px 26px;

    background-color: #FFFFFF;

    border: 1px solid #DCE6F5;

    border-radius: 30px;

    box-shadow:
        0 28px 80px rgba(12, 40, 93, 0.20),
        0 6px 20px rgba(12, 40, 93, 0.08);
}



/* =========================
   ÃœBERSCHRIFT
========================= */

.cookie-consent-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 16px;
}


.cookie-consent-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    color: #387DFF;

    background-color: #EEF5FF;

    border-radius: 13px;
}


.cookie-consent-icon svg {
    display: block;

    width: 25px;
    height: 25px;
}


.cookie-consent-copy h2 {
    margin: 0;

    color: #0C285D;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.025em;
}



/* =========================
   BESCHREIBUNG
========================= */

.cookie-consent-copy p {
    margin: 0;

    color: #606875;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.65;
}


.cookie-consent-copy a {
    color: #2057BE;

    font-weight: 600;

    text-decoration: underline;

    text-underline-offset: 3px;
}


.cookie-consent-copy a:hover,
.cookie-consent-copy a:focus-visible {
    color: #144399;
}



/* =========================
   COOKIE EINSTELLUNGEN
========================= */

.cookie-settings-panel {
    margin-top: 24px;

    padding-top: 4px;

    border-top: 1px solid #E7EDF5;
}


.cookie-setting {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #EDF1F6;
}


.cookie-setting-copy {
    display: flex;

    flex-direction: column;

    gap: 5px;

    min-width: 0;
}


.cookie-setting-copy strong {
    color: #0C285D;

    font-size: 14px;
    font-weight: 700;
}


.cookie-setting-copy span {
    color: #718096;

    font-size: 12px;

    line-height: 1.45;
}


.cookie-setting-required {
    flex-shrink: 0;

    color: #2057BE;

    font-size: 11px;
    font-weight: 700;
}



/* =========================
   COOKIE SWITCH
========================= */

.cookie-switch {
    position: relative;

    display: inline-block;

    width: 46px;
    height: 26px;

    flex-shrink: 0;
}


.cookie-switch input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.cookie-switch-slider {
    position: absolute;

    inset: 0;

    background-color: #D4DCE7;

    border-radius: 999px;

    cursor: pointer;

    transition:
        background-color 0.2s ease;
}


.cookie-switch-slider::before {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 20px;
    height: 20px;

    background-color: #FFFFFF;

    border-radius: 50%;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.2s ease;
}


.cookie-switch input:checked +
.cookie-switch-slider {
    background-color: #387DFF;
}


.cookie-switch input:checked +
.cookie-switch-slider::before {
    transform: translateX(20px);
}


.cookie-switch input:focus-visible +
.cookie-switch-slider {
    outline: 3px solid rgba(56, 125, 255, 0.22);

    outline-offset: 3px;
}



/* =========================
   AUSWAHL SPEICHERN
========================= */

.cookie-save-settings {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 48px;

    margin-top: 18px;

    padding: 11px 20px;

    color: #FFFFFF;

    background-color: #2057BE;

    border: 1px solid #2057BE;

    border-radius: 999px;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.cookie-save-settings:hover,
.cookie-save-settings:focus-visible {
    background-color: #144399;

    border-color: #144399;

    transform: translateY(-1px);
}



/* =========================
   HAUPT-BUTTONS
========================= */

.cookie-consent-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    width: 100%;

    margin-top: 28px;
}


.cookie-consent-button,
.cookie-consent-settings {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 54px;

    padding: 13px 22px;

    border-radius: 999px;

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}



/* Nur notwendige */

.cookie-consent-reject {
    color: #0C285D;

    background-color: #FFFFFF;

    border: 1.5px solid #D7DFEA;
}


.cookie-consent-reject:hover,
.cookie-consent-reject:focus-visible {
    color: #2057BE;

    background-color: #F7FAFF;

    border-color: #387DFF;

    transform: translateY(-1px);
}



/* Einstellungen */

.cookie-consent-settings {
    min-height: 48px;

    color: #53657A;

    background-color: transparent;

    border: 1px solid transparent;
}


.cookie-consent-settings:hover,
.cookie-consent-settings:focus-visible {
    color: #2057BE;

    background-color: #F6F9FF;
}



/* Alle akzeptieren */

.cookie-consent-accept {
    color: #FFFFFF;

    background-color: #387DFF;

    border: 1.5px solid #387DFF;

    box-shadow:
        0 8px 20px rgba(56, 125, 255, 0.20);
}


.cookie-consent-accept:hover,
.cookie-consent-accept:focus-visible {
    background-color: #144399;

    border-color: #144399;

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(20, 67, 153, 0.22);
}



/* =========================
   FOKUS
========================= */

.cookie-consent-button:focus-visible,
.cookie-consent-settings:focus-visible,
.cookie-save-settings:focus-visible {
    outline: 3px solid rgba(56, 125, 255, 0.22);

    outline-offset: 3px;
}



/* =========================
   RECHTLICHE LINKS
========================= */

.cookie-consent-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 19px;

    color: #8A95A5;

    font-size: 10px;
    line-height: 1.4;
}

.cookie-consent-links a {
    color: #7B8796;
    text-decoration: none;
}

.cookie-consent-links a:hover,
.cookie-consent-links a:focus-visible {
    color: #2057BE;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 700px) {

    .cookie-consent {
        align-items: flex-end;

        padding: 12px;
    }

    .cookie-consent-inner {
        width: 100%;
        max-height: calc(100dvh - 24px);

        padding: 28px 26px 22px;

        border-radius: 28px;
    }

    .cookie-consent-heading {
        gap: 11px;

        margin-bottom: 14px;
    }

    .cookie-consent-icon {
        width: 38px;
        height: 38px;

        border-radius: 11px;
    }

    .cookie-consent-icon svg {
        width: 23px;
        height: 23px;
    }

    .cookie-consent-copy h2 {
        font-size: 23px;
    }

    .cookie-consent-copy p {
        font-size: 15px;
        line-height: 1.6;
    }

    .cookie-consent-actions {
        margin-top: 24px;
    }

    .cookie-consent-button,
    .cookie-consent-settings {
        min-height: 51px;

        font-size: 14px;
    }

    .cookie-setting {
        gap: 14px;

        padding: 16px 0;
    }

    .cookie-save-settings {
        min-height: 48px;
    }
}


/* =========================
   KLEINE SMARTPHONES
========================= */

@media (max-width: 430px) {

    .cookie-consent {
        padding: 10px;
    }

    .cookie-consent-inner {
        max-height: calc(100dvh - 20px);

        padding: 24px 21px 20px;

        border-radius: 25px;
    }

    .cookie-consent-heading {
        align-items: flex-start;
    }

    .cookie-consent-icon {
        width: 35px;
        height: 35px;
    }

    .cookie-consent-icon svg {
        width: 21px;
        height: 21px;
    }

    .cookie-consent-copy h2 {
        padding-top: 4px;

        font-size: 21px;
        line-height: 1.2;
    }

    .cookie-consent-copy p {
        font-size: 14px;
        line-height: 1.58;
    }

    .cookie-consent-actions {
        gap: 9px;

        margin-top: 22px;
    }

    .cookie-consent-button,
    .cookie-consent-settings {
        min-height: 50px;

        padding: 12px 18px;

        font-size: 14px;
    }

    .cookie-setting {
        align-items: flex-start;

        gap: 12px;
    }

    .cookie-setting-required {
        padding-top: 2px;
    }

    .cookie-consent-links {
        gap: 6px;

        margin-top: 17px;

        font-size: 9px;
    }
}

/* =========================
   DATENSCHUTZ-EINSTELLUNGEN
========================= */

.cookie-consent {
    align-items: center;
    padding: clamp(14px, 3vw, 32px);
    background-color: rgba(8, 24, 53, 0.58);
}

.cookie-consent-inner {
    display: flex;
    flex-direction: column;
    width: min(720px, 100%);
    max-height: min(860px, calc(100dvh - 40px));
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(12, 40, 93, 0.12);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(8, 24, 53, 0.28);
}

.cookie-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #E5EAF1;
}

.cookie-dialog-header h2 {
    margin: 0;
    color: #0C285D;
    font-size: 23px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cookie-dialog-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0 0 3px;
    color: #687386;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-family: inherit;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.cookie-dialog-close:hover,
.cookie-dialog-close:focus-visible {
    color: #0C285D;
    background-color: #EEF4FF;
}

.cookie-dialog-body {
    min-height: 0;
    padding: 26px 28px 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cookie-dialog-intro {
    margin: 0;
    color: #626D7D;
    font-size: 14px;
    line-height: 1.65;
}

.cookie-dialog-intro a {
    color: #2057BE;
    font-weight: 650;
    text-decoration: none;
}

.cookie-dialog-intro a:hover,
.cookie-dialog-intro a:focus-visible {
    color: #144399;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-categories {
    margin-top: 18px;
}

.cookie-category {
    padding: 20px 0;
    border-top: 1px solid #E7ECF3;
}

.cookie-category-heading {
    display: grid;
    grid-template-columns: 46px auto 1fr;
    align-items: center;
    gap: 0 12px;
}

.cookie-category-heading h3 {
    margin: 0;
    color: #263247;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.3;
}

.cookie-category-status {
    justify-self: end;
    padding: 5px 9px;
    color: #187044;
    background-color: #ECF8F1;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cookie-category-status-optional {
    color: #2057BE;
    background-color: #EEF5FF;
}

.cookie-category > p {
    margin: 9px 0 0 58px;
    color: #6B7585;
    font-size: 13px;
    line-height: 1.55;
}

.cookie-details {
    margin: 13px 0 0 58px;
}

.cookie-details summary {
    color: #344052;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.cookie-details summary:hover,
.cookie-details summary:focus-visible {
    color: #2057BE;
}

.cookie-table-scroll {
    margin-top: 10px;
    overflow-x: auto;
    border: 1px solid #E5EAF1;
    border-radius: 10px;
}

.cookie-table-scroll table {
    width: 100%;
    min-width: 570px;
    border-collapse: collapse;
    color: #4D5869;
    font-size: 10px;
    line-height: 1.45;
}

.cookie-table-scroll th,
.cookie-table-scroll td {
    padding: 9px 10px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #E8EDF4;
}

.cookie-table-scroll th {
    color: #465165;
    background-color: #F5F7FA;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.cookie-table-scroll tbody tr:last-child td {
    border-bottom: 0;
}

.cookie-switch-readonly {
    opacity: 0.72;
}

.cookie-switch-readonly .cookie-switch-slider {
    cursor: default;
}

.cookie-dialog-footer {
    padding: 16px 28px 18px;
    background-color: #FFFFFF;
    border-top: 1px solid #E5EAF1;
    box-shadow: 0 -8px 24px rgba(12, 40, 93, 0.04);
}

.cookie-dialog-footer .cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.cookie-dialog-footer .cookie-consent-button,
.cookie-dialog-footer .cookie-save-settings {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 11px 14px;
    font-size: 13px;
}

.cookie-dialog-footer .cookie-save-settings {
    color: #2057BE;
    background-color: #F2F6FC;
    border-color: #D7E1EF;
}

.cookie-dialog-footer .cookie-save-settings:hover,
.cookie-dialog-footer .cookie-save-settings:focus-visible {
    color: #144399;
    background-color: #EAF1FB;
    border-color: #AFC5E5;
}

.cookie-dialog-footer .cookie-consent-links {
    margin-top: 13px;
}

.cookie-dialog-close:focus-visible,
.cookie-details summary:focus-visible {
    outline: 3px solid rgba(56, 125, 255, 0.22);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .cookie-consent {
        align-items: flex-end;
        padding: 10px;
    }

    .cookie-consent-inner {
        max-height: calc(100dvh - 20px);
        border-radius: 22px;
    }

    .cookie-dialog-header {
        padding: 20px 20px 17px;
    }

    .cookie-dialog-header h2 {
        font-size: 20px;
    }

    .cookie-dialog-body {
        padding: 21px 20px 6px;
    }

    .cookie-category > p,
    .cookie-details {
        margin-left: 0;
    }

    .cookie-dialog-footer {
        padding: 14px 20px 16px;
    }

    .cookie-dialog-footer .cookie-consent-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .cookie-dialog-header {
        padding: 18px 17px 15px;
    }

    .cookie-dialog-body {
        padding: 18px 17px 4px;
    }

    .cookie-dialog-intro {
        font-size: 13px;
    }

    .cookie-category {
        padding: 17px 0;
    }

    .cookie-category-heading {
        grid-template-columns: 42px auto 1fr;
        gap: 0 9px;
    }

    .cookie-category-status {
        padding: 5px 7px;
        font-size: 8px;
    }

    .cookie-dialog-footer {
        padding: 12px 17px 14px;
    }
}

/* =========================
   KOMPAKTER FOOTER + TALBI DIGITAL CREDIT
========================= */
@media (min-width: 1101px) {
    .footer-container {
        grid-template-columns: minmax(230px, 1.25fr) minmax(125px, .65fr) minmax(300px, 1.45fr) minmax(175px, .9fr) minmax(145px, .75fr);
        gap: 34px;
        padding-top: 58px;
        padding-bottom: 46px;
    }

    .footer-services-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 26px;
        row-gap: 11px;
        align-items: start;
    }
}

.footer-container {
    padding-top: 58px;
    padding-bottom: 46px;
}

.footer-links {
    gap: 11px;
}

.footer-contact {
    gap: 15px;
}

.footer-contact-button {
    margin-top: 20px;
}

.footer-credit {
    margin-left: 10px;
}

.footer-credit::before {
    content: "â€¢";
    margin-right: 10px;
    color: rgba(255, 255, 255, .35);
}

.footer-credit a {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: #FFFFFF;
}

@media (max-width: 1100px) and (min-width: 768px) {
    .footer-services-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 30px;
        row-gap: 11px;
    }
}

@media (max-width: 767px) {
    .footer-container {
        padding-top: 48px;
        padding-bottom: 38px;
        gap: 32px;
    }

    .footer-credit {
        display: block;
        margin: 7px 0 0;
    }

    .footer-credit::before {
        display: none;
    }
}


/* =========================================
   Einheitliche CTA-Buttons auf Leistungsseiten
   Gleiche Form, Icons und Reihenfolge wie im Startseiten-Hero
========================================= */
.service-cta-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.service-cta-button img,
.service-cta-button svg {
    display: block;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.service-cta-primary {
    color: #FFFFFF;
    background-color: #387DFF;
    border: 1.5px solid #387DFF;
}

.service-cta-primary:hover {
    color: #FFFFFF;
    background-color: #144399;
    border-color: #144399;
    transform: translateY(-2px);
}

.service-cta-pair-dark .service-cta-secondary {
    color: #FFFFFF;
    background-color: transparent;
    border: 1.5px solid #FFFFFF;
}

.service-cta-pair-dark .service-cta-secondary:hover {
    color: #3C5C7D;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.service-cta-pair-light .service-cta-secondary {
    color: #2057BE;
    background-color: #FFFFFF;
    border: 1.5px solid #2057BE;
}

.service-cta-pair-light .service-cta-secondary:hover {
    color: #FFFFFF;
    background-color: #2057BE;
    border-color: #2057BE;
    transform: translateY(-2px);
}

.service-cta-pair-sidebar {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
}

.service-cta-pair-sidebar .service-cta-button {
    width: 100%;
}

.services-page-hero-actions.service-cta-pair,
.availability-buttons.service-cta-pair {
    justify-content: center;
}

@media (max-width: 600px) {
    .service-cta-pair {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .service-cta-button {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        padding: 13px 18px;
        font-size: 14px;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    .service-cta-button img,
    .service-cta-button svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .service-cta-pair-sidebar .service-cta-button {
        max-width: none;
    }
}