/* ------------------------------------------------------
   Sztormowe Zdrowie – Elegant Classic CSS Theme
   Flexbox-only layouts, refined classic elegance, contrasting for all testimonials
   ------------------------------------------------------ */

/* === 1. CSS RESET & BASELINE === */
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #F8F8F8;
    color: #22303A;
    font-family: 'Roboto', Georgia, Times, serif;
    font-size: 16px;
    min-height: 100vh;
}
ol, ul {
    list-style: none;
}
a {
    color: #1F425D;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #44B77B;
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button, input, textarea, select {
    font-family: inherit;
    font-size: 1em;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* === 2. BRAND & TYPOGRAPHY === */
:root {
    --primary: #1F425D;
    --secondary: #44B77B;
    --accent: #F8F8F8;
    --text: #22303A;
    --muted-text: #6A7B83;
    --card-bg: #FFF;
    --border: #E5E6EA;
    --shadow: 0 2px 16px 0 rgba(31,66,93,0.06), 0 1.5px 4px 0 rgba(31,66,93,0.03);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.2s cubic-bezier(.46,.03,.52,.96);
    --font-display: 'Montserrat', Georgia, Times, serif;
    --font-body: 'Roboto', Georgia, Times, serif;
    --testimonial-bg: #F3F6F8;
    --footer-bg: #f5f7fa;
}

h1, .h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    margin-top: 0;
}
h2, .h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.2;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}
h3, .h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
}
h4, .h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 10px;
}
p, ul, ol, li {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 16px;
}
strong {
    font-weight: 600;
    color: var(--primary);
}
blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.45;
    color: var(--primary);
    margin: 0 0 14px 0;
    border-left: 4px solid var(--secondary);
    padding-left: 18px;
    background: none;
}

/* === 3. LAYOUT === */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* Flexbox utility classes as per requirements */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 22px;
    min-width: 240px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.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;
    gap: 20px;
    padding: 20px;
    background: var(--testimonial-bg);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 6px 0 rgba(31,66,93,0.045);
    margin-bottom: 20px;
    transition: box-shadow var(--transition), transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px 0 rgba(31,66,93,0.12);
    transform: translateY(-4px) scale(1.02);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* --- HERO, Features, Service Cards, Grids --- */
.hero {
    background: linear-gradient(120deg, #f5f7fa 0%, #eaf1f6 100%);
    padding-top: 64px;
    padding-bottom: 56px;
    margin-bottom: 60px;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 18px;
}
.features {
    background: #fff;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    margin-bottom: 60px;
}
.features-grid, .feature-icons-grid, .service-cards, .category-grid, .tips-highlights ul, .testimonial-grid, .service-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 0 20px 0;
}
.features-grid > div,
.feature-icons-grid > div,
.category-grid > div,
.service-benefits-grid > div {
    flex: 1 1 220px;
    min-width: 220px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 26px 18px 20px 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow var(--transition), transform var(--transition);
}
.features-grid > div:hover,
.feature-icons-grid > div:hover,
.category-grid > div:hover,
.service-benefits-grid > div:hover {
    box-shadow: 0 6px 24px 0 rgba(31,66,93,0.10);
    transform: translateY(-3px);
}
.features-grid img, .feature-icons-grid img, .category-grid img {
    margin-bottom: 18px;
    height: 38px;
    width: 38px;
}

/* --- SERVICE CARDS --- */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 22px 24px 22px;
    min-width: 240px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
    box-shadow: 0 8px 28px 0 rgba(31,66,93,0.14);
    transform: translateY(-5px) scale(1.01);
}
.service-card .service-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-display);
    margin-top: 6px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: #F8F8F8;
    padding-top: 36px;
    padding-bottom: 36px;
    margin-bottom: 60px;
}
.testimonials-slider, .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}
.testimonial-card {
    background: var(--testimonial-bg);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    max-width: 420px;
    min-width: 250px;
    box-shadow: var(--shadow);
    color: var(--primary);
    flex: 1 1 320px;
    transition: box-shadow var(--transition);
}
.testimonial-author {
    color: var(--text);
    font-size: 0.97rem;
    font-style: normal;
    font-family: var(--font-body);
    margin-top: 5px;
    letter-spacing: 0.1px;
}
/* Strong contrasting readable testimonial text on light background */
.testimonial-card blockquote {
    color: var(--primary);
    background: none;
    border-left: 3px solid var(--secondary);
    padding-left: 14px;
    margin-bottom: 10px;
}

/* === 4. BUTTONS & CTA === */
.cta-btn {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.11rem;
    border-radius: var(--radius-sm);
    padding: 16px 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 1.5px 6px 0 rgba(31,66,93,0.10);
    border: 2px solid var(--primary);
    outline: none;
    cursor: pointer;
    display: inline-block;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    margin-top: 6px;
    margin-bottom: 10px;
    text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 6px 18px 0 rgba(68,183,123,0.09);
}
button:disabled, .cta-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- LINKS --- */
a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--primary);
    transition: color 0.2s;
}
a:hover, a:focus {
    color: var(--secondary);
    text-decoration: none;
}
.footer-nav a {
    color: var(--muted-text);
    font-size: 0.98rem;
    margin-right: 18px;
    padding: 0 2px;
    font-weight: 400;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: var(--secondary);
    text-decoration: underline;
}

/* === 5. NAVIGATION === */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 12;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
    width: 100%;
}
.logo-link {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.nav-list {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-list li {
    list-style: none;
}
.nav-list a {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}
.nav-list a:hover, .nav-list a:focus {
    background: var(--secondary);
    color: #fff;
}

/* Burger for mobile */
.mobile-menu-toggle {
    display: none;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 2rem;
    border: none;
    padding: 6px 16px 6px 12px;
    cursor: pointer;
    z-index: 30;
    margin-left: 8px;
    transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: var(--secondary);
    color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(31,66,93, 0.98);
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 0.33s cubic-bezier(.57,.21,.69,1.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 32px 24px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    color: #fff;
    font-size: 2.3rem;
    border: none;
    align-self: flex-end;
    margin-bottom: 20px;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: var(--secondary);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.mobile-nav a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    padding: 12px 0;
    border-radius: 7px;
    transition: background 0.17s, color var(--transition);
    margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
}
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .main-nav .nav-list {
    gap: 7px;
  }
}
@media (max-width: 768px) {
    .main-nav .nav-list, .main-nav .cta-btn {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: inline-block;
        position: absolute;
        top: 16px;
        right: 24px;
    }
    .main-nav {
        justify-content: flex-start;
        gap: 0;
    }
}

/* === 6. FOOTER === */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding-top: 36px;
    padding-bottom: 12px;
    margin-top: 48px;
}
footer .container {
    flex-direction: column;
    align-items: stretch;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}
.contact-short {
    font-size: 0.99rem;
    color: var(--muted-text);
    margin-bottom: 10px;
}
.brand-credits {
    font-size: 0.94rem;
    color: var(--muted-text);
    margin-top: 9px;
}
.social-media-links {
    display: flex;
    gap: 19px;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 7px;
}
.social-media-links a img {
    width: 28px; height: 28px;
    opacity: 0.82;
    transition: opacity 0.2s, transform 0.2s;
}
.social-media-links a:hover img {
    opacity: 1; transform: scale(1.11) translateY(-2px);
}

/* === 7. ADDITIONAL PAGES & UTILITIES === */
.privacy-policy-content, .rodo-information-content, .cookie-policy-content, .terms-and-conditions-content {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 34px 27px;
    margin-bottom: 22px;
}
.confirmation, .thank-you-message, .next-steps-information {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Contact page */
.contact-details, .office-hours, .location-map, .transport-tips {
    margin-bottom: 22px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 21px 17px;
}
.contact-details a {
    color: var(--primary);
    text-decoration: underline;
}
.cta-contact {
    margin-top: 26px;
}

/* === 8. COOKIE CONSENT BANNER === */
.cookie-consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #FFF;
    box-shadow: 0 -2px 16px rgba(31,66,93,0.09);
    border-top: 1px solid var(--border);
    z-index: 200;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    font-size: 1rem;
    transition: transform 0.36s, opacity 0.2s;
    opacity: 1;
    transform: translateY(0);
}
.cookie-consent-banner.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(128px);
}
.cookie-consent-banner .cookie-btns {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}
.cookie-btn, .cookie-preferences-btn {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 26px;
    border: 2px solid var(--primary);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    outline: none;
}
.cookie-btn.reject {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: var(--secondary);
    color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.cookie-preferences-btn {
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
}
.cookie-preferences-btn:hover, .cookie-preferences-btn:focus {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31,66,93,0.70);
    z-index: 201;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    backdrop-filter: blur(1px);
    transition: opacity 0.28s;
    opacity: 1;
}
.cookie-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.cookie-modal {
    background: #fff;
    padding: 32px 20px 24px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 420px;
    min-width: 0;
    margin: 40px 10px 60px 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    position: relative;
    animation: fadeInModal 0.44s cubic-bezier(.55,.06,.53,1.36);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96) translateY(35px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
    font-size: 1.32rem;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}
.cookie-category-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 6px;
    justify-content: space-between;
}
.cookie-category-row label {
    font-size: 1rem;
    color: var(--text);
    flex: 1;
}
.cookie-toggle {
    appearance: none;
    width: 42px; height: 24px;
    background: #ececec;
    border-radius: 12px;
    position: relative;
    transition: background 0.23s;
    cursor: pointer;
    outline: none;
    margin-left: 2px;
}
.cookie-toggle:checked {
    background: var(--secondary);
}
.cookie-toggle:before {
    content: "";
    display: block;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 3px; top: 3px;
    transition: left 0.23s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.cookie-toggle:checked:before {
    left: 21px;
}
.cookie-modal .close-modal {
    position: absolute;
    top: 13px; right: 15px;
    background: none;
    color: var(--primary);
    font-size: 1.55rem;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.19s;
}
.cookie-modal .close-modal:hover {
    color: var(--secondary);
}
.cookie-modal .cookie-modal-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 20px;
}
.cookie-modal-actions .cookie-btn {
    min-width: 90px;
}
.cookie-category-row input[disabled], .cookie-toggle[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* === 9. MEDIA QUERIES (Responsive Flexbox) === */
@media (max-width: 1200px) {
    h1 { font-size: 2.15rem; }
    h2 { font-size: 1.5rem; }
}
@media (max-width: 980px) {
    .content-wrapper, .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .service-cards, .features-grid, .feature-icons-grid, .category-grid, .testimonial-grid {
        gap: 17px;
    }
}
@media (max-width: 850px) {
    .footer .content-wrapper,
    .testimonial-grid,
    .features-grid,
    .service-cards,
    .feature-icons-grid,
    .category-grid,
    .service-benefits-grid {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-card, .features-grid > div, .service-card, .category-grid > div {
        min-width: 90vw;
    }
}
@media (max-width: 768px) {
    html, body {
        font-size: 15px;
    }
    .container {
        padding: 0 4vw;
    }
    .section {
        padding: 27px 8px;
        margin-bottom: 44px;
    }
    .hero {
        padding-top: 36px;
        padding-bottom: 30px;
    }
    .main-nav {
        padding: 10px 0;
    }
    .footer .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .content-wrapper {
        gap: 18px;
    }
    .testimonial-card {
        min-width: 0;
        width: 100%;
        padding: 18px 11px;
    }
    .testimonials-slider, .testimonial-grid {
        gap: 11px;
    }
    .feature-icons-grid, .features-grid, .category-grid, .service-cards {
        gap: 11px;
    }
    .features-grid, .feature-icons-grid, .category-grid, .service-cards, .service-benefits-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .service-card, .features-grid > div, .feature-icons-grid > div, .category-grid > div {
        min-width: 0;
        width: 100%;
        padding: 18px 10px 14px 10px;
    }
    .content-grid, .tips-highlights ul {
        flex-direction: column;
        gap: 11px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .about .text-section, .about .brand-story-timeline, .about .team-intro {
        padding: 0;
    }
    .cookie-modal {
        max-width: 96vw;
        padding: 22px 5vw 18px 5vw;
    }
}
@media (max-width: 500px) {
    h1 {
        font-size: 1.55rem;
        margin-bottom: 13px;
    }
    h2 {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }
    h3 {
        font-size: 1.03rem;
        margin-bottom: 7px;
    }
    .section {
        padding: 16px 0;
    }
}

/* === 10. FOCUS STATES, MICRO-INTERACTIONS === */
a, button, .cta-btn, .cookie-btn, .cookie-preferences-btn, .mobile-menu-toggle, .mobile-menu-close {
    outline: none; box-shadow: none;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible, .cookie-preferences-btn:focus-visible,
.mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Subtle card animations */
.card, .service-card, .testimonial-card {
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .service-card:hover {
    box-shadow: 0 6px 24px 0 rgba(31,66,93,0.11);
    transform: translateY(-2px) scale(1.01);
}

/* === 11. SPACING ENFORCEMENT === */
.section > *, .content-wrapper > * {
    margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child {
    margin-bottom: 0;
}

/* --- Decorative enhancements --- */
.card, .service-card, .testimonial-card, .features-grid > div, .category-grid > div {
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.card, .service-card, .testimonial-card {
    border-radius: var(--radius);
    background: var(--card-bg);
    backdrop-filter: blur(0.5px);
}

/* --- Hide .mobile-menu and .cookie-modal-overlay by default --- */
.mobile-menu, .cookie-modal-overlay {
    display: none;
}
.mobile-menu.open, .cookie-modal-overlay.visible {
    display: flex;
}

/* End of stylesheet */
