/* ============================================================
   FLUXORA EDUKACJA - GEOMETRIC STRUCTURED DESIGN SYSTEM
   Author: Senior CSS Developer & UI Designer
   Brand: Fluxora Edukacja
   ============================================================ */
/* ============================================================
   NORMALIZE & RESET
   ============================================================ */
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;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    min-height: 100vh;
    background-color: #F6F8FA;
    color: #24292E;
}
ul, ol {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    background: none;
    transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    outline: none;
    color: inherit;
}

/* ============================================================
   THEME COLORS & FONTS
   ============================================================ */
:root {
    --primary: #29489A;
    --secondary: #23B282;
    --accent: #F6F8FA;
    --headline: #171C33;
    --card-bg: #fff;
    --border: #E3E6EC;
    --shadow: 0 2px 12px rgba(33,48,110,0.10);
    --radius: 18px;
    --radius-sm: 8px;
    --radius-lg: 32px;
    --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
    --font-body: 'Lato', Arial, Helvetica, sans-serif;
    --transition: 0.20s cubic-bezier(.4,0,.2,1);
}
@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: local('Montserrat'), local('Montserrat-Bold');  /* Web font omitted for brevity */
}
@font-face {
  font-family: 'Lato'; font-style: normal; font-weight: 400; src: local('Lato'), local('Lato-Regular'); /* Web font omitted for brevity */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--accent);
    color: #222;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.00em;
    margin-bottom: 20px;
    line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p {
    margin-bottom: 1em;
    max-width: 750px;
}
strong {
    font-weight: 700;
}
.text-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
    color: var(--secondary);
}
/* Font for geometric/structured feeling */
h1, h2, h3, h4 {
    text-transform: none;
    font-variation-settings: 'wght' 700, 'wdth' 100;
    font-feature-settings: 'ss01' on;
}

/* Angular/cutting geometric effects */
h1, h2 {
    letter-spacing: -0.02em;
}
h3, h4 {
    letter-spacing: 0.005em;
}

/* ============================================================
   STRUCTURAL CLASSES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
    align-items: flex-start;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    flex: 1 1 320px;
    padding: 28px 28px 18px 28px;
    border: 1.5px solid var(--border);
}
.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;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-left: 6px solid var(--secondary);
    min-width: 320px;
    flex: 1 1 350px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(33,48,110,0.17);
    transform: translateY(-2px) scale(1.016);
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 14px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: box-shadow var(--transition);
}
.feature-item img {
    width: 48px;
    height: 48px;
}

/* Feature grid (in HTML as .feature-grid) */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 10px;
}
.feature-grid > li {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    flex: 1 1 260px;
    min-width: 260px;
    padding: 28px 24px 20px 24px;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.feature-grid > li:hover {
    box-shadow: 0 4px 16px rgba(33,48,110,0.14);
    border-color: var(--secondary);
}
.feature-grid img {
    width: 42px;
    height: auto;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}
.service-list > li {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 22px 24px 18px 24px;
    flex: 1 1 260px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: box-shadow var(--transition), border-color var(--transition);
    margin-bottom: 20px;
}
.service-list > li:hover {
    box-shadow: 0 4px 16px rgba(33,48,110,0.17);
    border-color: var(--secondary);
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.team-member {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    padding: 24px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    flex: 1 1 240px;
}
.team-role {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 4px;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.blog-list article {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 22px 18px 22px;
    flex: 1 1 260px;
    min-width: 260px;
    margin-bottom: 20px;
    border: 1.5px solid var(--border);
    transition: box-shadow var(--transition);
}
.blog-list article:hover {
    box-shadow: 0 4px 18px rgba(33,48,110,0.13);
}

.categories-nav {
    margin-top: 15px;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.categories-nav a {
    text-decoration: underline;
    transition: color var(--transition);
    font-weight: 600;
    color: var(--primary);
}
.categories-nav a:hover {
    color: var(--secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}
.contact-details img {
    width: 20px;
    margin-right: 7px;
    vertical-align: text-bottom;
}
.info-text {
    margin-top: 8px;
}

/* ============================================================
   HEADER & NAVIGATION (DESKTOP)
   ============================================================ */
header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(41, 72, 154, 0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 88px;
    position: sticky;
    top: 0;
    z-index: 50;
}
header > a img {
    height: 50px;
    width: auto;
    display: block;
}
header nav {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
header nav a {
    padding: 8px 10px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
    background: var(--accent);
    color: var(--secondary);
}
.cta-btn {
    font-family: var(--font-display);
    font-weight: 700;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px 8px 40px 8px;
    font-size: 1.07rem;
    line-height: 1;
    letter-spacing: 0.06em;
    display: inline-flex;
    border: none;
    box-shadow: 0 2px 12px rgba(33,72,154,0.11);
    margin-left: 28px;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(35,178,130,0.19);
    transform: translateY(-2px) scale(1.028);
}

/* ====================
   MOBILE NAVIGATION
   ==================== */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 28px;
    top: 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px 3px 10px 3px;
    font-size: 2rem;
    z-index: 105;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--secondary);
    color: #fff;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(41, 72, 154, 0.99);
    transform: translateX(-100vw);
    transition: transform 0.32s cubic-bezier(.95,.05,.24,1.06);
    z-index: 200;
    padding: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 16px 22px 20px 0px;
    background: none;
    color: #fff;
    font-size: 2.25rem;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: var(--secondary);
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 14px 34px 14px 34px;
}
.mobile-nav a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 7px;
    padding: 16px 8px;
    transition: background var(--transition), color var(--transition), padding var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
    text-decoration: underline;
    padding-left: 16px;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1023px) {
    header nav {
        display: none;
    }
    .cta-btn {
        margin-left: 0;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (min-width: 1024px) {
    .mobile-menu { display: none !important; }
}

/* Ensure proper stacking for overlay menu */
.mobile-menu, .mobile-menu-toggle { z-index: 999; }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
main {
    margin-top: 32px;
    margin-bottom: 40px;
}
section {
    margin-bottom: 60px;
    padding: 40px 0 0 0;
    width: 100%;
}
/* Ensure minimum spacing between all content blocks */
section + section {
    margin-top: 24px;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.text-section > a, .text-section > button {
    margin-top: 7px;
}

ol, ul {
    padding-left: 1.2em;
    margin-bottom: 16px;
}
ol > li {
    margin-bottom: 8px;
    font-family: var(--font-body);
}
ul > li {
    margin-bottom: 8px;
    font-family: var(--font-body);
}

input[type="text"], select {
    border: 1.5px solid var(--border);
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 6px;
    width: 100%;
    max-width: 330px;
    box-shadow: 0 1px 2px rgba(33,72,154,0.06);
    transition: border var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus, select:focus {
    border-color: var(--secondary);
    box-shadow: 0 2px 10px rgba(35,178,130,0.11);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #fff;
    color: #222;
    padding: 32px 0 0 0;
    box-shadow: 0 -2px 10px rgba(33,48,110,0.09);
    font-size: 0.95rem;
}
footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
footer .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}
footer .content-wrapper > a {
    flex: 0 0 110px;
    margin-right: 32px;
}
footer nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-family: var(--font-display);
}
footer nav a {
    color: var(--primary);
    font-weight: 600;
    transition: color var(--transition);
    font-size: 1.02rem;
}
footer nav a:hover, footer nav a:focus {
    color: var(--secondary);
    text-decoration: underline;
}
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #484B68;
    font-size: 1rem;
}
footer .contact-info img {
    width: 18px;
    margin-right: 7px;
    vertical-align: text-bottom;
}

/* ============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================ */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    z-index: 3000;
    background: #fff;
    box-shadow: 0 -2px 18px rgba(41,72,154,0.17);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 24px;
    gap: 32px;
    transition: transform 0.3s var(--transition), opacity 0.22s var(--transition);
    font-family: var(--font-body);
}
.cookie-banner.hide {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-message {
    color: var(--primary);
    font-size: 1.07rem;
    max-width: 480px;
    margin-right: 18px;
}
.cookie-btn {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 22px 7px 22px 7px;
    padding: 10px 20px;
    border: none;
    margin-right: 12px;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn.accept {
    background: var(--secondary);
}
.cookie-btn.settings {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 6px;
}
.cookie-btn:hover, .cookie-btn:focus {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 0 10px rgba(35,178,130,0.13);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--secondary);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    z-index: 3500;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 40px rgba(41,72,154,0.19);
    width: 98vw;
    max-width: 420px;
    min-width: 290px;
    padding: 38px 34px 24px 34px;
    transition: opacity 0.22s var(--transition), transform 0.33s var(--transition);
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cookie-modal.hide {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%,-40%) scale(0.96);
}
.cookie-modal-close {
    background: none;
    border: none;
    position: absolute;
    right: 30px;
    top: 26px;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: background var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: var(--accent);
}
.cookie-cat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.cookie-cat label {
    flex: 1 1 70%;
    font-size: 1.06rem;
    font-weight: 600;
}
.cookie-switch {
    min-width: 48px;
    min-height: 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cookie-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    background: #E7EDF5;
    border-radius: 20px;
    position: absolute;
    width: 48px;
    height: 28px;
    transition: background 0.18s;
}
.cookie-switch input:checked + .cookie-slider {
    background: var(--secondary);
}
.cookie-slider:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(41,72,154,0.06);
}
.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
}
.cookie-cat-desc {
    font-size: 0.92rem;
    color: #5a6780;
    margin-top: 5px;
}

/* Cookie modal headings */
.cookie-modal h2, .cookie-modal h3 {
    color: var(--primary);
    margin-bottom: 6px;
}

/* Essential cookies (always enabled) */
.cookie-cat.essential label {
    color: var(--primary);
}
.cookie-cat.essential .cookie-switch {
    pointer-events: none;
    opacity: 0.55;
}

/* Cookie modal action buttons */
.cookie-modal .modal-actions {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}
.cookie-modal .cookie-btn {
    padding: 10px 18px;
    font-size: 1.05rem;
}

/* Overlay for modal */
.cookie-overlay {
    position: fixed;
    z-index: 3400;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,36,64,0.4);
    width: 100vw; height: 100vh;
}
.cookie-overlay.hide {
    display: none;
}

/* ============================================================
   ANIMATIONS, TRANSITIONS, MICROINTERACTIONS
   ============================================================ */
.cta-btn, .cookie-btn, .card, .feature-grid > li, .service-list > li, .testimonial-card, .team-member, .blog-list article {
    transition: box-shadow 0.20s cubic-bezier(.4,0,.2,1), border 0.18s, background 0.2s, color 0.2s, transform 0.18s;
}

a, .cta-btn, .cookie-btn, button {
    cursor: pointer;
    user-select: none;
}

/* button, input focus state */
button:focus, .cta-btn:focus, .cookie-btn:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* == Microanimation on buttons */
.cta-btn:active, .cookie-btn:active {
    transform: scale(0.96);
}

/* == Interactive: shadow lift on card hover */
.card:hover, .feature-grid > li:hover, .service-list > li:hover, .team-member:hover, .blog-list article:hover {
    box-shadow: 0 6px 26px rgba(41, 72, 154, 0.13);
    transform: translateY(-2px) scale(1.012);
}

/* == List hover for nav == */
nav a:active, .mobile-nav a:active {
    color: var(--primary);
}

/* == Subtle underline for links in content == */
article a, .text-section a:not(.cta-btn) {
    text-decoration: underline;
    color: var(--primary);
    font-weight: 600;
    transition: color var(--transition);
}
article a:hover, .text-section a:not(.cta-btn):hover {
    color: var(--secondary);
    text-decoration: underline wavy;
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ============================================================ */

/* General adjustments for < 768px */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.05rem; }

    .container {
        padding-left: 8px; padding-right: 8px;
    }
    .section {
        padding: 24px 4px;
        margin-bottom: 32px;
    }
    .content-wrapper {
        gap: 16px;
    }
    .card-container, .content-grid, .feature-grid, .service-list, .team-list, .blog-list {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .feature-grid > li, .service-list > li, .team-member, .blog-list article {
        min-width: 0;
        padding: 18px 14px;
    }
    .testimonial-card {
        flex-direction: column;
        padding: 18px 12px 14px 12px;
    }
    .testimonial-meta {
        margin-left: 0;
    }
    .text-image-section {
        flex-direction: column;
        gap: 16px;
    }
    header {
        flex-direction: row;
        height: 68px;
        padding: 0 10px;
    }
    header > a img {
        height: 36px;
    }
    .cta-btn {
        font-size: 0.98rem;
        padding: 10px 19px;
        margin-left: 7px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 8px 18px 10px;
    }
    .cookie-banner-message {
        font-size: 0.97rem;
        margin-right: 0; margin-bottom: 8px;
    }
    footer .content-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}
/* Special: make sure testimonials never overlap, even on smallest screens */
@media (max-width: 528px) {
    .testimonial-card {
        flex-direction: column;
        min-width: 0;
        font-size: 0.97rem;
        padding: 12px 5px 10px 9px;
    }
    .feature-grid > li, .service-list > li, .team-member, .blog-list article {
        padding: 13px 4px;
    }
}

@media (max-width: 400px) {
    .cta-btn, .cookie-btn {
        font-size: 0.89rem;
        padding: 8px 12px;
    }
}

/* ================================
   GEOMETRIC SHAPE DECOR EFFECTS
   (optional, can be used as needed)
   ================================ */
.geometric-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

/* Debug: prevent accidental overlap anywhere: */
*:not(header):not(footer):not(.mobile-menu):not(.cookie-banner):not(.cookie-modal) {
    box-sizing: border-box;
}

/* ================================
   END OF STYLE SHEET
   ================================ */
