:root {
    --olm-blue: #0057b8;
    --olm-blue-dark: #06356f;
    --olm-blue-deep: #082547;
    --olm-cyan: #00a7e1;
    --olm-green: #35b779;
    --olm-ink: #172033;
    --olm-muted: #64748b;
    --olm-line: #d9e4f2;
    --olm-surface: #f5f8fc;
    --olm-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--olm-ink);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--olm-white);
}

a {
    text-decoration: none;
}

.site-container {
    max-width: 1440px;
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(217, 228, 242, 0.9);
    backdrop-filter: blur(16px);
    overflow: visible;
}

.site-message-stack {
    position: fixed;
    top: 112px;
    right: clamp(1rem, 3vw, 3rem);
    z-index: 1080;
    width: min(92vw, 520px);
}

.site-message-stack .alert {
    box-shadow: 0 18px 44px rgba(8, 37, 71, 0.16);
}

.navbar {
    min-height: 98px;
    padding: 0;
}

.navbar .site-container {
    position: relative;
    min-height: 98px;
}

.navbar-brand {
    position: absolute;
    left: clamp(1rem, 3vw, 3rem);
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}

.brand-logo {
    width: 184px;
    height: 184px;
    object-fit: contain;
}

.navbar-collapse {
    padding-left: 215px;
}

.navbar-nav .nav-link {
    color: var(--olm-ink);
    font-weight: 600;
    padding: 1.65rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--olm-blue);
}

.navbar-nav {
    gap: 0.75rem;
}

.language-btn {
    min-width: 54px;
    font-weight: 700;
}

.nav-action-item {
    display: flex;
    align-items: center;
}

.partner-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 138px;
    height: 36px;
    padding: 0 0.8rem;
    border: 1px solid var(--olm-line);
    border-radius: 4px;
    color: var(--olm-blue);
    font-size: 0.875rem;
    font-weight: 800;
    background: var(--olm-white);
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.partner-icon-link:hover,
.partner-icon-link:focus {
    color: var(--olm-white);
    border-color: var(--olm-blue);
    background: var(--olm-blue);
}

.partner-icon-link svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cms-login-btn {
    min-width: 104px;
}

.language-item {
    display: flex;
    align-items: center;
}

.navbar-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0;
    background: var(--olm-white);
}

.mega-kicker,
.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--olm-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mega-link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--olm-line);
    color: var(--olm-ink);
}

.mega-link span {
    display: block;
    font-weight: 800;
}

.mega-link small {
    display: block;
    margin-top: 0.2rem;
    color: var(--olm-muted);
}

.mega-link:hover span {
    color: var(--olm-blue);
}

.mega-highlight {
    height: 100%;
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--olm-white);
    background: linear-gradient(135deg, var(--olm-blue-dark), var(--olm-blue));
}

.mega-highlight h2 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.hero-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--olm-blue-deep);
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(4, 21, 44, 0.9) 0%, rgba(4, 21, 44, 0.74) 38%, rgba(4, 21, 44, 0.18) 72%),
        linear-gradient(0deg, rgba(8, 37, 71, 0.18), rgba(8, 37, 71, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    color: var(--olm-white);
}

.hero-content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.9rem);
    line-height: 0.98;
    font-weight: 800;
}

.hero-lead {
    max-width: 650px;
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.btn {
    border-radius: 4px;
    font-weight: 800;
}

.btn-primary {
    background: var(--olm-blue);
    border-color: var(--olm-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--olm-blue-dark);
    border-color: var(--olm-blue-dark);
}

.hero-metrics {
    max-width: 600px;
    margin-top: 3rem;
}

.hero-metrics > div {
    min-height: 92px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 1.7rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
}

.section-block {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 2rem;
}

.section-heading h2,
.services-section h2,
.cta-panel h2 {
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.section-copy {
    color: var(--olm-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.modal-kicker {
    margin: 0 0 0.25rem;
    color: var(--olm-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.news-section {
    background: var(--olm-white);
}

.news-card,
.service-card {
    height: 100%;
    min-height: 285px;
    padding: 1.5rem;
    border: 1px solid var(--olm-line);
    border-radius: 8px;
    background: var(--olm-white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 87, 184, 0.35);
    box-shadow: 0 22px 50px rgba(8, 37, 71, 0.12);
}

.news-date {
    color: var(--olm-blue);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card h3,
.service-card h3 {
    margin: 0.8rem 0;
    color: var(--olm-blue-deep);
    font-size: 1.35rem;
    line-height: 1.22;
    font-weight: 800;
}

.news-card p,
.service-card p {
    color: var(--olm-muted);
    line-height: 1.65;
}

.news-card a {
    color: var(--olm-blue);
    font-weight: 800;
}

.services-section {
    background: var(--olm-surface);
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--olm-white);
    font-weight: 800;
    background: var(--olm-blue);
}

.partner-cta-section {
    padding: 0 0 2rem;
    background: var(--olm-surface);
}

.partner-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(0, 87, 184, 0.22);
    border-left: 6px solid var(--olm-blue);
    border-radius: 8px;
    background: var(--olm-white);
    box-shadow: 0 18px 44px rgba(8, 37, 71, 0.08);
}

.partner-cta-content h2 {
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
}

.partner-cta-content p:not(.section-kicker) {
    max-width: 780px;
    margin: 1rem 0 0;
    color: var(--olm-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.partner-cta-aside {
    display: grid;
    gap: 1.25rem;
    justify-items: start;
}

.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.partner-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--olm-line);
    border-radius: 999px;
    color: var(--olm-blue-dark);
    font-size: 0.9rem;
    font-weight: 800;
    background: #eef6ff;
}

.cta-section {
    padding: 0 0 clamp(4rem, 7vw, 7rem);
    background: var(--olm-surface);
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 8px;
    color: var(--olm-white);
    background:
        linear-gradient(135deg, rgba(8, 37, 71, 0.96), rgba(0, 87, 184, 0.95)),
        var(--olm-blue);
}

.cta-panel h2 {
    color: var(--olm-white);
}

.cta-panel p:not(.section-kicker) {
    max-width: 720px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.rental-pricing-section {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.rental-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.rental-price-panel {
    grid-template-columns: minmax(0, 1fr);
}

.rental-price-box {
    display: inline-grid;
    justify-items: start;
    align-self: end;
    min-width: 190px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.rental-price {
    color: var(--olm-white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 800;
}

.rental-price-note {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

.knowledge-hero {
    padding: clamp(8rem, 13vw, 12rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        linear-gradient(135deg, rgba(245, 248, 252, 0.96), rgba(255, 255, 255, 0.9)),
        var(--olm-surface);
}

.knowledge-hero h1 {
    max-width: 860px;
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 800;
}

.knowledge-hero-lead {
    max-width: 720px;
    margin: 1.5rem 0 0;
    color: var(--olm-muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.knowledge-hero-card {
    overflow: hidden;
    border: 1px solid var(--olm-line);
    border-radius: 8px;
    background: var(--olm-white);
    box-shadow: 0 22px 54px rgba(8, 37, 71, 0.12);
}

.knowledge-hero-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.knowledge-hero-card div {
    padding: 1.25rem;
}

.knowledge-hero-card span,
.knowledge-hero-card strong {
    display: block;
}

.knowledge-hero-card span {
    color: var(--olm-cyan);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.knowledge-hero-card strong {
    margin-top: 0.35rem;
    color: var(--olm-blue-deep);
    font-size: 1.2rem;
}

.knowledge-grid-section {
    background: var(--olm-white);
}

.knowledge-grid-section .section-heading {
    max-width: none;
    width: 100%;
}

.knowledge-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.knowledge-card {
    display: flex;
    min-height: 305px;
    overflow: hidden;
    border: 1px solid var(--olm-line);
    border-radius: 8px;
    background: var(--olm-white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.knowledge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 87, 184, 0.35);
    box-shadow: 0 22px 50px rgba(8, 37, 71, 0.12);
}

.knowledge-card-featured {
    min-height: 430px;
}

.knowledge-card-media {
    flex: 0 0 48%;
    min-height: 100%;
}

.knowledge-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.knowledge-card-type {
    margin: 0 0 1rem;
    color: var(--olm-blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.knowledge-card h3 {
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    line-height: 1.15;
    font-weight: 800;
}

.knowledge-card p:not(.knowledge-card-type) {
    margin: 1rem 0 1.5rem;
    color: var(--olm-muted);
    line-height: 1.65;
}

.knowledge-card a {
    margin-top: auto;
    color: var(--olm-blue);
    font-weight: 800;
}

.knowledge-cta-section {
    padding: 0 0 clamp(4rem, 7vw, 7rem);
    background: var(--olm-white);
}

.municipality-intro-section {
    background: var(--olm-white);
}

.municipality-intro-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(0, 87, 184, 0.18);
    border-left: 6px solid var(--olm-blue);
    border-radius: 8px;
    background: var(--olm-surface);
}

.municipality-intro-panel h2 {
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
}

.municipality-intro-text {
    display: grid;
    gap: 1rem;
}

.municipality-intro-text p {
    margin: 0;
    color: var(--olm-muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

@media (min-width: 992px) {
    .municipality-intro-panel {
        grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
        column-gap: clamp(2rem, 3vw, 3rem);
        row-gap: 0.75rem;
    }

    .municipality-intro-panel .section-kicker,
    .municipality-intro-panel h2 {
        grid-column: 1;
    }

    .municipality-intro-panel .section-kicker {
        margin-bottom: 0;
    }

    .municipality-intro-text {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

.municipality-functions-section {
    background: var(--olm-surface);
}

.municipality-function-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.municipality-function-card {
    min-height: 280px;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--olm-line);
    border-radius: 8px;
    background: var(--olm-white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.municipality-function-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 87, 184, 0.35);
    box-shadow: 0 22px 50px rgba(8, 37, 71, 0.1);
}

.municipality-function-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    color: var(--olm-blue);
    background: #eef6ff;
}

.municipality-function-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.municipality-function-card h3 {
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
}

.municipality-function-card p {
    margin: 1rem 0 0;
    color: var(--olm-muted);
    line-height: 1.65;
}

.social-cta-section {
    padding: 0 0 clamp(3rem, 6vw, 5rem);
    background: var(--olm-white);
}

.social-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(0, 87, 184, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(245, 248, 252, 0.98), rgba(255, 255, 255, 0.95)),
        var(--olm-surface);
    box-shadow: 0 18px 44px rgba(8, 37, 71, 0.08);
}

.social-cta-content h2 {
    max-width: 760px;
    margin: 0;
    color: var(--olm-blue-deep);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
}

.social-cta-content p:not(.section-kicker) {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--olm-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.social-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--olm-line);
    border-radius: 4px;
    color: var(--olm-blue-deep);
    font-weight: 800;
    background: var(--olm-white);
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-link:hover,
.social-link:focus {
    transform: translateY(-2px);
    color: var(--olm-white);
    border-color: var(--olm-blue);
    background: var(--olm-blue);
}

.social-link-youtube:hover,
.social-link-youtube:focus {
    border-color: #d12f2f;
    background: #d12f2f;
}

.site-footer {
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.78);
    background: #071b34;
}

.footer-logo {
    width: 174px;
    height: auto;
    margin-bottom: 1.25rem;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--olm-white);
    font-size: 1rem;
    font-weight: 800;
}

.site-footer a,
.site-footer span,
.footer-link-button {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover,
.footer-link-button:hover {
    color: var(--olm-white);
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    display: none;
    width: min(620px, calc(100vw - 2rem));
    gap: 1rem;
    align-items: stretch;
    padding: 1rem;
    border-radius: 8px;
    color: var(--olm-white);
    background: rgba(7, 27, 52, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.cookie-banner.is-visible {
    display: grid;
}

.cookie-banner p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-preference-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-preference-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--olm-line);
    border-radius: 8px;
    background: var(--olm-surface);
}

.cookie-preference-item h3 {
    margin: 0 0 0.4rem;
    color: var(--olm-blue-deep);
    font-size: 1.05rem;
    font-weight: 800;
}

.cookie-preference-item p {
    margin: 0;
    color: var(--olm-muted);
    line-height: 1.55;
}

.cookie-preference-item .form-check {
    min-width: 128px;
}

.cookie-legal-note {
    color: var(--olm-muted);
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 68px;
        padding: 0.6rem 0;
    }

    .navbar-brand {
        display: none !important;
    }

    .navbar .site-container {
        min-height: 44px;
    }

    .navbar-collapse {
        padding-left: 0;
    }

    .navbar-mobile-actions {
        width: 100%;
    }

    .navbar-mobile-actions .navbar-toggler {
        margin-right: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
        order: 3;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .navbar-nav .dropdown-toggle {
        display: none;
    }

    .mobile-home-link {
        color: var(--olm-blue) !important;
        font-weight: 800;
        border-bottom: 1px solid var(--olm-line);
    }

    .nav-action-item {
        align-items: flex-start;
        padding: 0.45rem 0;
    }

    .navbar-mobile-actions .partner-icon-link {
        min-width: auto;
        height: 34px;
        padding: 0 0.65rem;
        font-size: 0.78rem;
    }

    .navbar-mobile-actions .cms-login-btn {
        min-width: auto;
        height: 34px;
        padding: 0.38rem 0.65rem;
        font-size: 0.78rem;
    }

    .navbar-mobile-actions .language-btn {
        height: 34px;
        min-width: 50px;
        font-size: 0.78rem;
    }

    .mega-menu {
        display: block;
        position: static !important;
        width: 100%;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        margin: 0.25rem 0 1rem;
        padding: 0;
        border: 1px solid var(--olm-line) !important;
        border-radius: 8px;
        box-shadow: none !important;
    }

    .mega-menu .site-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mega-highlight {
        padding: 1rem;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4, 21, 44, 0.92), rgba(4, 21, 44, 0.72));
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .rental-price-grid {
        grid-template-columns: 1fr;
    }

    .partner-cta-panel {
        grid-template-columns: 1fr;
    }

    .social-cta-panel {
        grid-template-columns: 1fr;
    }

    .social-cta-actions {
        justify-content: flex-start;
    }

    .municipality-intro-panel,
    .municipality-function-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-card-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-card-media {
        flex-basis: 42%;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .social-cta-actions,
    .social-link {
        width: 100%;
    }

    .footer-bottom,
    .cookie-banner,
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-preference-item {
        grid-template-columns: 1fr;
    }

    .knowledge-card-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-card,
    .knowledge-card-featured {
        grid-column: auto;
        min-height: auto;
    }

    .knowledge-card-featured {
        display: block;
    }

    .knowledge-card-media {
        min-height: auto;
    }

    .knowledge-card-media img {
        aspect-ratio: 16 / 10;
    }
}
