/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
    background: #fafbfc;
    color: #1b2633;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #18415E;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #B69A5B;
    text-decoration: underline;
    outline: none;
}
ul, ol {
    list-style: none;
}
table {
    border-collapse: collapse;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 2px 16px 0 rgba(24,65,94,0.05);
}
thead {
    background: #18415E;
    color: #fff;
}
th, td {
    padding: 14px 20px;
    text-align: left;
}
tbody tr { border-bottom: 1px solid #F2F3F4; }
tr:last-child { border-bottom: none; }

/* BRAND & LUXURY PREMIUM COLOR PALETTE */
:root {
    --primary: #18415E;
    --secondary: #46A9AE;
    --accent: #F2F3F4;
    --gold: #B69A5B;
    --dark: #10171d;
    --text: #202529;
    --bg: #FAFBFC;
    --shadow: 0 4px 24px 0 rgba(32,37,41,0.12);
    --border-radius: 16px;
    --border-card: 1px solid #edecea;
}

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.13;
    letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong, b { font-weight: 600; }

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.44rem; }
}
@media (max-width: 600px){
    h1 { font-size: 1.37rem; }
    h2 { font-size: 1.11rem; }
    h3 { font-size: 1rem; }
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--bg);
    border-radius: var(--border-radius);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    position: relative;
    padding: 32px 24px;
    border: var(--border-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.28s;
}
.card:hover {
    box-shadow: 0 6px 24px 0 rgba(24,65,94,0.16);
    z-index: 2;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 14px;
    border: var(--border-card);
    box-shadow: 0 3px 28px 0 rgba(24,65,94,0.11);
    margin-bottom: 20px;
    position: relative;
    min-width: 250px;
    max-width: 500px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px 0 rgba(24,65,94,0.14);
    transform: translateY(-4px);
}
.testimonial-card p {
    color: #232323;
    font-size: 1.07rem;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 10px;
    text-align: center;
}
.testimonial-card span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.99rem;
    margin-bottom: 0;
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.17rem;
    letter-spacing: 0.08em;
    font-family: 'Montserrat', Arial, sans-serif;
}
.rating-summary {
    padding: 16px;
    text-align: center;
    margin-top: 6px;
}
.rating-summary strong { color: var(--gold); font-weight: 700; }

.feature-list,
.service-overview,
.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 16px;
}
.feature-list li,
.service-overview li,
.service-categories li {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 2px 16px 0 rgba(24,65,94,0.06);
    border: var(--border-card);
    min-width: 240px;
    flex: 1 1 220px;
    position: relative;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.feature-list li:hover,
.service-overview li:hover,
.service-categories li:hover {
    box-shadow: 0 6px 24px 0 rgba(24,65,94,0.13);
    transform: translateY(-2px);
    z-index: 2;
}
.feature-list img {
    width: 44px; height: 44px; margin-bottom: 10px;
}
.feature-list h3 { color: var(--gold); font-size: 1.13rem; font-weight: 700; margin-bottom: 7px; }
.feature-list p, .service-overview p {
    font-size: 0.97rem;
    color: var(--text);
}

.highlight {
    background: #fffaf2;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 2px 20px 0 rgba(182,154,91,0.04);
    margin: 22px 0 0 0;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.transparency-note {
    background: #f7fbe8;
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 20px 18px;
    font-size: 0.97rem;
    color: #396a63;
    margin-top: 16px;
}

/******** BUTTON STYLES ********/
.cta-primary {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.07rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 14px 34px;
    margin-top: 10px;
    box-shadow: 0 2px 8px 0 rgba(24,65,94,0.09);
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.2s, color 0.17s, transform 0.12s;
    position: relative;
}
.cta-primary:hover, .cta-primary:focus {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 5px 22px 0 rgba(182,154,91,0.13);
    outline: none;
    transform: translateY(-2px) scale(1.02);
}
.cta-primary:active {
    transform: scale(0.97);
}

/* Feature item for flexbox utility */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/******* HEADER & TOP NAV **********/
header {
    background: #fff;
    border-bottom: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0; left: 0;
    z-index: 30;
    min-height: 72px;
    box-shadow: 0 2px 12px 0 rgba(32,37,41,0.05);
}
header > a img {
    height: 44px; width: auto;
    margin: 14px 16px 14px 14px;
}
header nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
header nav a {
    padding: 8px 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
    border-radius: 8px;
    transition: background 0.18s, color 0.15s, box-shadow 0.12s;
    margin-right: 2px;
}
header nav a.cta-primary {
    margin-left: 16px;
    background: var(--gold);
    color: var(--primary);
    font-size: 1rem;
    padding: 11px 22px;
    border-radius: 22px;
    font-weight: 700;
    box-shadow: 0 2px 6px 0 rgba(182,154,91,0.10);
}
header nav a.cta-primary:hover {
    background: var(--primary);
    color: #fff;
}
header nav a:hover:not(.cta-primary), header nav a:focus:not(.cta-primary) {
    background: var(--accent);
    color: var(--gold);
}

header {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0 0 0 16px;
}
header nav {
    flex: 1;
}

/******* MOBILE NAVIGATION *******/
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: var(--primary);
    margin-left: 18px;
    margin-right: 12px;
    cursor: pointer;
    z-index: 60;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,65,94, 0.985);
    box-shadow: 0 3px 36px 0 rgba(24,65,94,0.13);
    z-index: 200;
    transform: translateX(100vw);
    transition: transform 0.36s cubic-bezier(.8,.22,.23,1.01);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 0 0 0;
    min-width: 270px;
    width: 100vw;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 201;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: rgba(182,154,91,0.18);
    outline: none;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 58px 0 0 32px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.09rem;
    padding: 12px 8px;
    border-radius: 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 2px;
    transition: background 0.18s, color 0.12s;
}
.mobile-nav a.cta-primary {
    background: var(--gold);
    color: var(--primary);
    border-radius: 25px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 12px;
    padding: 14px 26px;
    box-shadow: 0 2px 10px 0 rgba(182,154,91,0.11);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--accent);
    color: var(--primary);
    outline: none;
}
.mobile-nav a.cta-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Only show burger for mobile */
@media (max-width: 992px) {
    header nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
}
@media (min-width: 993px) {
    .mobile-menu {
        display: none !important;
    }
}

/******** MAIN ELEMENTS *******/
main {
    flex: 1 0 auto;
    width: 100%;
    background: var(--bg);
    padding-bottom: 70px;
}

/****** HERO SECTION ******/
.hero {
    background: linear-gradient(102deg, #fff 70%, #f7eecd 100%);
    border-radius: 0;
    box-shadow: 0 4px 38px 0 rgba(182,154,91,0.07);
    padding: 64px 0 48px 0;
}
.hero .container {
    align-items: center;
    min-height: 240px;
}
.hero h1 {
    color: var(--primary);
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    text-shadow: 0 2px 14px rgba(182,154,91,0.04);
}
.hero p {
    font-size: 1.18rem;
    max-width: 600px;
    color: var(--dark);
    margin-bottom: 24px;
}

/******* CTA, Content*, & Cards *******/
.cta, .cta-form, .cta-contact, .cta-pricing, .cta-review, .thank-you-message {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px 28px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.cta-form a.cta-primary,
.cta-contact a.cta-primary,
.cta-pricing a.cta-primary,
.cta-review a.cta-primary,
.thank-you-message a.cta-primary {
    margin-top: 16px;
}

/***** FOOTER *******/
footer {
    background: #18415E;
    color: #fff;
    padding: 36px 0 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.99rem;
    position: relative;
    z-index: 20;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 14px;
}
.footer-menu a {
    color: #fff;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.13s, color 0.13s;
    font-size: 0.96rem;
}
.footer-menu a:hover,
.footer-menu a:focus {
    background: var(--gold);
    color: var(--primary);
    outline: none;
}
.footer-contact-snippet {
    margin-bottom: 10px;
    text-align: center;
    color: #dfdfdf;
    font-size: 0.96rem;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}
.footer-social img {
    width: 28px; height: 28px;
    filter: grayscale(0.18) brightness(1.15);
    opacity: 0.92;
    transition: filter 0.18s, opacity 0.18s;
}
.footer-social img:hover {
    filter: grayscale(0) brightness(1.33) drop-shadow(0 1px 6px #B69A5B77);
    opacity: 1;
}
.footer-legal {
    font-size: 0.92rem;
    color: #dbd7ce;
    margin-top: 6px;
}

/****** MAP EMBED & CONTACT ******/
.contact-information {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 16px 0 rgba(24,65,94,0.06);
    padding: 30px 18px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: var(--border-card);
    max-width: 600px;
}
.contact-information img {
    width: 23px;
    height: 23px;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: 2px;
}

/***** ACCORDIONS & FAQ ******/
.faq-accordion > div {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 10px 0 rgba(70,169,174,0.03);
    margin-bottom: 18px;
    padding: 20px 18px;
    border: var(--border-card);
    transition: box-shadow 0.15s;
}
.faq-accordion > div:hover {
    box-shadow: 0 4px 17px 0 rgba(24,65,94,0.09);
}
.faq-accordion h2 {
    font-size: 1.12rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.faq-accordion p {
    font-size: 0.97rem;
    color: var(--dark);
    margin-bottom: 0;
}
.unanswered {
    margin-top: 20px;
    text-align: center;
}

/***** Responsive Card Layouts *****/
@media (max-width: 992px) {
    .feature-list, .service-overview, .service-categories {
        flex-direction: column;
        gap: 18px;
    }
    .card-container, .content-grid {
        flex-direction: column;
        gap: 18px;
    }
    .testimonial-card {
        max-width: none;
    }
    .container {
        padding: 0 12px;
    }
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .hero {
        padding: 34px 0 26px 0;
    }
    .cta, .cta-form, .cta-contact, .cta-pricing, .cta-review, .thank-you-message {
        padding: 26px 10px;
    }
    .highlight {
        padding: 19px 8px;
    }
}
@media (max-width: 520px) {
    .footer-menu {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        gap: 8px;
    }
}

/****** MODALS & OVERLAYS *******/
.modal {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background-color: rgba(24,65,94,0.32);
    z-index: 1020;
    align-items: center;
    justify-content: center;
}
.modal.open {
    display: flex;
    animation: modalFadeIn 0.22s;
}
@keyframes modalFadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 400px;
    padding: 36px 24px 26px 24px;
    text-align: left;
    box-shadow: 0 8px 36px 0 rgba(24,65,94,0.17);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: modalContentIn 0.23s;
}
@keyframes modalContentIn {
    from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; }
}
.modal-close {
    position: absolute;
    right: 17px;
    top: 17px;
    background: none;
    color: var(--primary);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 5px 11px;
    transition: background 0.14s;
}
.modal-close:hover {
    background: #f8ece4;
}

/****** COOKIE CONSENT BANNER ******/
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    background: #fffaf4;
    color: #232323;
    border-top: 3px solid var(--gold);
    box-shadow: 0 -2px 24px 0 rgba(24,65,94,0.08);
    z-index: 999;
    padding: 18px 18px 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    font-size: 1rem;
    transition: transform 0.33s cubic-bezier(.73,.12,.23,1.01);
}
.cookie-banner.hide {
    transform: translateY(120%);
}
.cookie-banner .cookie-text {
    flex: 2 1 230px;
    padding-right: 8px;
    color: #232323;
    font-size: 1rem;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
.cookie-banner .cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.97rem;
    border: none;
    border-radius: 20px;
    padding: 10px 18px;
    margin-left: 0;
    cursor: pointer;
    font-weight: 600;
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 2px 8px 0 rgba(70,169,174,0.05);
    transition: background .18s, color .15s;
}
.cookie-banner .cookie-btn.accept {
    background: var(--gold);
    color: var(--primary);
}
.cookie-banner .cookie-btn.accept:hover {
    background: var(--primary);
    color: #fff;
}
.cookie-banner .cookie-btn.reject {
    background: #fff;
    color: #ab1313;
    border: 2px solid #d8a35b;
}
.cookie-banner .cookie-btn.reject:hover {
    background: #fde2b8;
}
.cookie-banner .cookie-btn.settings {
    background: var(--secondary);
    color: #fff;
}
.cookie-banner .cookie-btn.settings:hover {
    background: var(--primary);
}

@media (max-width: 700px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        font-size: 0.98rem;
        padding: 15px 3vw 18px 3vw;
    }
    .cookie-banner .cookie-actions {
        flex-direction: row;
        gap: 9px;
    }
}

/****** COOKIE MODAL CATEGORIES ******/
.cookie-modal-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.06rem;
    background: #f9f9f9;
    border-radius: 14px;
    padding: 10px 11px;
}
.cookie-category input[type=checkbox] {
    width: 19px;
    height: 19px;
    accent-color: var(--gold);
    border-radius: 3px;
}
.cookie-category .cookie-category-label {
    font-weight: 500;
    color: var(--primary);
}
.cookie-category.essential {
    opacity: 0.8;
}
.cookie-category.essential .cookie-category-label::after {
    content: ' (immer aktiv)';
    font-size: 0.98rem;
    color: var(--secondary);
    margin-left: 3px;
}

/***** UTILITIES ******/
.bg-gold { background: var(--gold); color: var(--primary); }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-dark { color: var(--dark); }

/***** MISCELLANEOUS ******/
::-webkit-scrollbar { width: 8px; background: #f2f2f2; }
::-webkit-scrollbar-thumb { background: #e6e6e6; border-radius: 8px; }

/***** TRANSITIONS ******/
.transition {
    transition: all 0.2s cubic-bezier(.8,.23,.45,1);
}

/***** ERRORS AND WARNINGS ******/
input:invalid, textarea:invalid {
    border-color: #e66b6b;
    background: #fff1f1;
}

/****** THANK YOU MESSAGE ******/
.thank-you-message ul {
    margin-left: 18px;
    list-style-type: disc;
}

/***** ACCESSIBILITY & FOCUS ******/
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    z-index: 2;
}

/* ------- END OF CSS ------- */
