/* ==========================================================================
   CSS Reset & Normalize for Consistency
   ==========================================================================
*/
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    min-height: 100vh;
    background: #fff;
    color: #191919;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
    display: block;
}
ul, ol {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    background: transparent;
}
img, picture {
    max-width: 100%;
    display: block;
    border: 0;
}
button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
    line-height: inherit;
}
svg {
    display: inline-block;
}

/* ==========================================================================
   Brand Variables & Font Imports
   ==========================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400&family=Roboto+Slab:wght@400;600&display=swap');
:root {
    --color-primary: #191919;
    --color-secondary: #fff;
    --color-accent: #373737;
    --color-light: #f5f6fa;
    --color-mid: #c8c9cc;
    --color-dark: #090909;
    --color-link: #236C91;
    --color-highlight: #222;
    --color-muted: #eaeaea;

    --shadow-card: 0 4px 24px 0 rgba(0,0,0,0.08), 0 1.5px 12px 0 rgba(30,30,30,0.07);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 30px;
    --transition-all: 0.28s cubic-bezier(.77,.2,.05,1.0);
    --fs-xl: 2.5rem; /* 40px */
    --fs-lg: 2rem;   /* 32px */
    --fs-md: 1.5rem; /* 24px */
    --fs-base: 1.125rem; /* 18px */
    --fs-sm: 1rem;   /* 16px */
    --fs-xs: 0.875rem; /* 14px */

    --font-display: 'Roboto Slab', serif;
    --font-body: 'Open Sans', Arial, sans-serif;
}

/* ==========================================================================
   Flex Layout Containers
   ==========================================================================
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.header-bar, .footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

/* Section Spacing Patterns (MANDATORY) */
.section, .hero-section, .features-section, .services-section, .cta-section, .contact-section, .about-section, .thank-you-section, .faq-section, .legal-section, .contact-info-section, .contact-form-section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--color-secondary);
    border-radius: var(--radius-md);
}
/* Flex Card Layout Patterns */
.card-container, .feature-grid, .service-grid, .testimonial-slider, .faq-accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fafbfc;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    padding: 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 28px 26px;
    background: #fff;
    color: #181818;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.09);
    min-width: 270px;
    max-width: 360px;
    flex: 1 1 280px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 28px 0 rgba(20,20,20,0.18);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #fafbfc;
    border-radius: var(--radius-md);
    padding: 24px 20px 28px 20px;
    min-width: 230px;
    flex: 1 1 260px;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-all);
}
.feature-item:hover {
    box-shadow: 0 8px 32px 0 rgba(20,20,20,0.15);
    background: #f4f5f6;
}
.service-item {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 26px 22px;
    flex: 1 1 230px;
    min-width: 220px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition-all);
}
.service-item:hover {
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
}

/* ==========================================================================
   Header & Navigation
   ==========================================================================
*/
header {
    background: var(--color-secondary);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 110;
}
.header-bar img {
    height: 48px;
    width: auto;
    margin-right: 16px;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: #222;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-all), color var(--transition-all);
    letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
    background: var(--color-primary);
    color: var(--color-secondary);
}
.header-bar .btn-primary {
    margin-left: 18px;
}
.header-bar .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2rem;
    padding: 5px 13px;
    color: #222;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-all);
    z-index: 130;
}
.header-bar .mobile-menu-toggle:hover,
.header-bar .mobile-menu-toggle:focus {
    background: #d8d8d8;
}

/* ==========================================================================
   Mobile Menu Styles
   ==========================================================================
*/
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #101010fa;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform var(--transition-all);
    padding: 0 0 0 0;
    box-sizing: border-box;
    opacity: 1;
    pointer-events: none;
}
.mobile-menu.active {
    transform: translateX(0%);
    pointer-events: auto;
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 24px 32px 12px 0;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 200;
    transition: color var(--transition-all);
}
.mobile-menu-close:hover {
    color: var(--color-link);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    margin-top: 24px;
    gap: 24px;
    padding: 0 40px;
}
.mobile-nav a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    width: 100%;
    transition: background var(--transition-all), color var(--transition-all);
    margin-bottom: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--color-link);
    color: #fff;
}

/* Show/hide on mobile/desktop */
@media (max-width: 1024px) {
    .main-nav, .header-bar .btn-primary {
        display: none;
    }
    .header-bar .mobile-menu-toggle {
        display: block;
    }
}
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ==========================================================================
   Typography
   ==========================================================================
*/
h1, .display-1 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
h2, .display-2 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: 1.22;
    color: var(--color-primary);
    margin-bottom: 8px;
}
h3 {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    font-weight: 400;
    color: #333;
}
h4, h5, h6 {
    font-family: var(--font-body);
}
p, li, label {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: #191919;
}
strong { font-weight: 600; }
small { font-size: var(--fs-xs); }
a {
    color: var(--color-link);
    text-underline-position: under;
    text-decoration-color: #bbb;
    transition: color var(--transition-all);
}
a:hover, a:focus {
    color: #141414;
    text-decoration-color: var(--color-link);
}

/* ==========================================================================
   Hero Section
   ==========================================================================
*/
.hero-section {
    background: linear-gradient(110deg, #f8f8f8 60%, #f3f3f3 100%);
    box-shadow: 0 12px 64px 0 rgba(40,40,40,0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    min-height: 260px;
}
.hero-section h1 {
    color: var(--color-primary);
    font-size: 2.3rem;
}
.hero-section p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   Buttons
   ==========================================================================
*/
.btn-primary, .btn-secondary {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    border: none;
    padding: 13px 34px;
    font-size: var(--fs-base);
    box-shadow: 0 1.5px 8px 0 rgba(19,19,19,0.07);
    cursor: pointer;
    text-align: center;
    transition: background var(--transition-all), color var(--transition-all), box-shadow var(--transition-all);
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 14px 0 rgba(30,30,30,0.10);
}
.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   Cards, Lists, Details
   ==========================================================================
*/
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 18px 0 28px 0;
    padding-left: 14px;
}
.service-list li {
    background: #f5f6fa;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: #181818;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #eaeaea;
}
.service-list span {
    font-size: 1.25em;
    color: var(--color-link);
    margin-right: 4px;
}
.contact-details ul, .contact-info-section ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
    margin-bottom: 18px;
}
.contact-details li, .contact-info-section li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #363636;
    font-size: 1rem;
    border-bottom: 1px solid #ededf0;
    padding-bottom: 6px;
}
.contact-details img, .contact-info-section img {
    width: 22px; height: 22px;
}
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-fields label {
    color: #353535;
    font-weight: 600;
    font-size: 1rem;
}
.form-fields input[type='text'],
.form-fields input[type='email'],
.form-fields input[type='tel'],
.form-fields textarea {
    background: #f8f8f9;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e6e6e9;
    padding: 11px 13px;
    color: #272727;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border var(--transition-all), box-shadow var(--transition-all);
    resize: vertical;
}
.form-fields input:focus, .form-fields textarea:focus {
    border: 1.5px solid var(--color-link);
    box-shadow: 0 2px 6px 0 rgba(35,108,145,0.09);
}
.form-fields input[readonly], .form-fields textarea[readonly] {
    background: #e9e9ec;
    color: #898989;
    cursor: not-allowed;
}
.form-fields input[disabled], .form-fields textarea[disabled] {
    opacity: 0.52;
    cursor: not-allowed;
}
.form-fields .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.form-fields .checkbox-group input[type='checkbox'] {
    accent-color: var(--color-primary);
    width: 18px; height: 18px;
    margin-top: 3px;
}
.form-fields .checkbox-group label a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-accordion {
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #fafbfc;
    border-radius: var(--radius-md);
    box-shadow: 0 2.5px 10px 0 rgba(30,30,30,0.10);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-left: 6px solid var(--color-link);
    min-width: 210px;
}
.faq-item h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    color: #181818;
}
.faq-item p {
    font-size: 0.97rem;
    color: #353535;
}

/* Legal section */
.legal-section p {
    font-size: 1rem;
    line-height: 1.65;
    color: #181818;
    margin-bottom: 0;
}
.legal-section strong {
    color: #333;
}

/* ==========================================================================
   CTA Section
   ==========================================================================
*/
.cta-section {
    background: linear-gradient(100deg, #fff 50%, #f7f7f7 100%);
    box-shadow: 0 1.5px 8px 0 rgba(60,60,60,0.05);
    border-radius: var(--radius-md);
    margin-bottom: 60px;
    text-align: left;
}
.cta-section h2 {
    color: var(--color-primary);
    font-size: 2rem;
}
.cta-section p {
    color: #474747;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

/* Thank-you section */
.thank-you-section {
    background: #fafbfc;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 28px 0 rgba(20,20,20,0.08);
    text-align: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-section h1 {
    font-size: 2.1rem;
    margin-bottom: 24px;
}

/* ==========================================================================
   Testimonials
   ==========================================================================
*/
.testimonials-section {
    background: #f4f4f7;
    border-radius: var(--radius-md);
    padding-top: 54px;
}
.testimonials-section .testimonial-slider {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.testimonial-card {
    background: #fff;
    color: #181818;
    min-width: 270px;
    max-width: 370px;
    border: 1.5px solid #e4e4e4;
    font-size: 1.05rem;
    transition: box-shadow var(--transition-all), border var(--transition-all);
}
.testimonial-info strong {
    color: #236C91;
    font-size: 0.95em;
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ==========================================================================
*/
footer {
    background: #17181a;
    color: #eee;
    box-shadow: 0 -2px 12px 0 rgba(10,10,10,0.05);
    font-size: 1rem;
}
.footer-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 36px;
    padding-bottom: 36px;
}
.footer-bar img {
    height: 38px;
    width: auto;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: center;
}
.footer-nav a {
    color: #e6e6e6;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    padding: 4px 9px;
    transition: background 0.14s;
    opacity: .96;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #282a2f;
    color: #beecfd;
}
.footer-contact {
    font-size: 0.97rem;
    color: #d6d6d6;
    opacity: .8;
    margin-top: 10px;
}
@media (max-width: 700px) {
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-bar img {
        margin-bottom: 14px;
    }
}

/* ==========================================================================
   Cookie Consent Banner & Modal
   ==========================================================================
*/
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100vw;
    background: #191919de;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    z-index: 32000;
    box-shadow: 0 -2.5px 24px 0 rgba(24,24,24,0.09);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    gap: 32px;
    opacity: 1;
    animation: cookieSlideIn .78s cubic-bezier(.77,.3,.09,1.01);
    min-height: 64px;
}
.cookie-banner.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(.68,.1,.07,.91);
}
@keyframes cookieSlideIn {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-body);
}
.cookie-banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
}
.cookie-btn, .cookie-btn-settings {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 5px 0 rgba(0,0,0,.05);
    transition: background var(--transition-all), color var(--transition-all), box-shadow var(--transition-all);
}
.cookie-btn:hover, .cookie-btn:focus {
    background: var(--color-primary);
    color: #fff;
}
.cookie-btn-settings {
    background: #181b22;
    color: #fff;
    border: 1.6px solid #fff;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
    background: #fff;
    color: var(--color-primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18,18,18,0.81);
    z-index: 33000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    animation: cookieModalFadeIn 0.26s cubic-bezier(.77,.2,.07,0.93);
}
@keyframes cookieModalFadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    color: #141414;
    padding: 38px 32px 32px 32px;
    border-radius: var(--radius-md);
    max-width: 410px;
    box-shadow: 0 8px 38px 0 rgba(40,40,40,0.18);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.cookie-modal-close {
    position: absolute;
    top: 18px; right: 20px;
    font-size: 1.4em;
    background: transparent;
    border: none;
    color: #181818;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    transition: background var(--transition-all);
    z-index: 40;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
    background: #eee;
}
.cookie-modal h3 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 1.28rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cookie-category label {
    font-size: 1rem;
    font-weight: 600;
}
.cookie-category .category-toggle {
    appearance: none;
    width: 40px;
    height: 24px;
    border-radius: 18px;
    background: #e3e3e3;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background var(--transition-all);
}
.cookie-category .category-toggle:checked {
    background: var(--color-primary);
}
.cookie-category .category-toggle:disabled {
    background: #aaa;
    cursor: not-allowed;
    opacity: 0.57;
}
.cookie-category .toggle-slider {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background: #fff;
    box-shadow: 0 1.5px 4px 0 rgba(24,24,24,0.11);
    transition: left 0.22s;
}
.cookie-category .category-toggle:checked + .toggle-slider {
    left: 19px;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}
.cookie-modal-actions .cookie-btn {
    min-width: 100px;
}

/* ==========================================================================
   Spacing, Alignment & Responsive Layouts
   ==========================================================================
*/
@media (max-width: 1024px) {
    .section, .hero-section, .features-section, .services-section, .cta-section, .contact-section, .about-section, .thank-you-section, .faq-section, .legal-section {
        padding: 32px 8px;
    }
    .header-bar {
        flex-direction: row;
        gap: 11px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .service-grid, .testimonial-slider, .footer-bar, .card-container, .content-grid {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 98vw;
    }
    .main-nav {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .hero-section h1, .thank-you-section h1 {
        font-size: 1.57rem;
    }
    h2, .display-2 {
        font-size: 1.23rem;
    }
    .content-wrapper {
        gap: 19px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 17px;
        padding: 18px 10px;
    }
    .cookie-banner-buttons {
        gap: 7px;
        align-items: flex-start;
        flex-direction: column;
    }
    .cookie-modal {
        max-width: 94vw;
        padding: 23px 11px 22px 15px;
    }
}
@media (max-width: 425px) {
    .cookie-modal h3 { font-size: 1.06rem; }
    .footer-contact { font-size: 0.86rem; }
    .header-bar img { height: 36px; }
    .btn-primary, .btn-secondary { padding: 10px 10px; font-size: 0.99rem; }
}

/* Prevent Overlapping and Enforce Gaps */
.card, .feature-item, .testimonial-card, .service-item, .faq-item {
    margin-bottom: 20px;
}
.section:not(:last-child), .content-wrapper > *:not(:last-child) {
    margin-bottom: 20px;
}

/* Misc */
::-webkit-input-placeholder { color: #b2b2b2; }
::-moz-placeholder { color: #b2b2b2; }
:-ms-input-placeholder { color: #b2b2b2; }
::placeholder { color: #b2b2b2; }

/* Remove scrollbar for mobile menu overlay */
.mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide scroll and prevent background scrolling when mobile menu or cookie modal active */
body.mobile-menu-open, body.cookie-modal-open {
    overflow: hidden;
}

/* Subtle Micro-Interactions */
.card, .feature-item, .testimonial-card, .service-item {
    transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .service-item:hover {
    box-shadow: 0 6px 36px 0 rgba(35,35,35,0.16);
    transform: translateY(-5px) scale(1.015);
}

/* Monochrome Dramatic Effects for Sophistication */
.hero-section, .section, .features-section, .services-section, .about-section, .legal-section, .faq-section {
    background: #fff;
    color: #181818;
}
.feature-item, .testimonial-card, .faq-item, .service-item, .card {
    background: #f9f9fa;
    color: #181818;
    border-color: #e5e6e8;
}

/* Monochrome-inspired links & interaction */
a, .main-nav a, .footer-nav a, .btn-primary, .btn-secondary {
    transition: color 0.17s, background 0.2s, border 0.19s, box-shadow 0.2s;
}

/* Strong color contrast for testimonials */
.testimonial-card p {
    color: #101010;
    font-size: 1.08rem;
    font-weight: 400;
}
.testimonial-card strong { color: #236C91; }

/* Emphasize h1/h2 with letter-spacing and monochrome underline */
h1, h2 {
    border-bottom: 2.5px solid #2222;
    padding-bottom: 7px;
    margin-bottom: 18px;
    letter-spacing: -0.011em;
}
h1 { border-color: #2225; }
h2 { border-color: #19191a23; }

/* Make sure modals, overlays, and banners stack over content */
.cookie-banner { z-index: 32000; }
.cookie-modal-overlay { z-index: 33000; }
.mobile-menu { z-index: 9999; }

/* END OF CSS - KlimaMeister München */
