* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Site Header - Sticky */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Header Bar */
.top-bar {
    background-color: #024FB8;
    color: white;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-logo {
    display: none;
}

.top-bar-logo-img {
    height: 60px;
    width: auto;
}

.top-bar-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
}

.top-bar-title span {
    font-size: 0.875rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-left: 10px;
}

.btn-online {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-online:hover {
    background: rgba(255,255,255,0.1);
}

/* Accessibility Button (mobile) */
.btn-accessibility {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-accessibility.mobile-only {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-accessibility:hover {
    background: rgba(128, 128, 128, 0.2);
}

/* Accessibility Controls (desktop - inline) */
.accessibility-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.font-size-controls-inline {
    display: flex;
    gap: 4px;
}

.font-size-controls-inline button {
    width: 32px;
    height: 32px;
    border: 1px solid #024FB8 !important;
    background: white !important;
    background-color: white !important;
    color: #024FB8 !important;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.font-size-controls-inline button:hover {
    background: #024FB8 !important;
    background-color: #024FB8 !important;
    color: white !important;
}

.contrast-toggle-inline {
    width: 36px;
    height: 36px;
    border: 1px solid #024FB8 !important;
    background: white !important;
    background-color: white !important;
    color: #024FB8 !important;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contrast-toggle-inline:hover,
.contrast-toggle-inline.active {
    background: #024FB8 !important;
    background-color: #024FB8 !important;
    color: white !important;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: auto;
    max-height: 90vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    border-radius: 0 0 0 12px;
}

.accessibility-panel.open {
    right: 0;
}

.accessibility-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #024FB8;
    color: white;
    font-weight: 600;
}

.accessibility-panel-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.accessibility-panel-content {
    padding: 20px;
}

.accessibility-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.accessibility-option:last-child {
    border-bottom: none;
}

.accessibility-option span {
    font-size: 0.875rem;
    color: #333;
}

.font-size-controls {
    display: flex;
    gap: 8px;
}

.font-size-controls button {
    width: 36px;
    height: 36px;
    border: 1px solid #024FB8;
    background: white;
    color: #024FB8;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.font-size-controls button:hover {
    background: #024FB8;
    color: white;
}

.contrast-toggle {
    width: 50px;
    height: 28px;
    background: #ccc;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.contrast-toggle .toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: left 0.3s;
}

.contrast-toggle.active {
    background: #024FB8;
}

.contrast-toggle.active .toggle-slider {
    left: 25px;
}

/* Construction Banner */
.construction-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.construction-banner svg {
    flex-shrink: 0;
}

/* High Contrast Mode */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast .site-header,
body.high-contrast .nav-container,
body.high-contrast .footer,
body.high-contrast .main-content {
    background: #000 !important;
}

body.high-contrast .nav-container {
    border-bottom-color: #fff !important;
}

body.high-contrast .main-nav a,
body.high-contrast .footer-links a,
body.high-contrast .contact-text,
body.high-contrast p,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast .page-title h1,
body.high-contrast .feature-card h3,
body.high-contrast .feature-card p,
body.high-contrast .service-content h3,
body.high-contrast .service-content p,
body.high-contrast .team-card-name,
body.high-contrast .team-card-role,
body.high-contrast .contact-card h3,
body.high-contrast .contact-card p {
    color: #fff !important;
}

body.high-contrast .main-nav a:hover,
body.high-contrast .main-nav a.active {
    border-bottom-color: #fff !important;
}

body.high-contrast .feature-card,
body.high-contrast .service-card,
body.high-contrast .contact-card,
body.high-contrast .team-card,
body.high-contrast .pdf-card {
    background: #111 !important;
    border: 1px solid #fff !important;
}

body.high-contrast .btn-primary {
    background: #fff !important;
    color: #000 !important;
}

body.high-contrast .btn-secondary {
    border-color: #fff !important;
    color: #fff !important;
}

body.high-contrast .title-line,
body.high-contrast .title-diamond {
    background: #fff !important;
}

body.high-contrast .copyright {
    background: #111 !important;
}

body.high-contrast .mobile-bottom-nav {
    background: #111 !important;
    border-top: 1px solid #fff;
}

body.high-contrast .mobile-nav-item {
    color: #fff !important;
}

body.high-contrast .mobile-nav-item.active {
    color: #ffd700 !important;
}

body.high-contrast .construction-banner {
    background: #333 !important;
    border: 1px solid #fff;
}

body.high-contrast .font-size-controls-inline button,
body.high-contrast .contrast-toggle-inline {
    background: #000 !important;
    border-color: #fff !important;
    color: #fff !important;
}

body.high-contrast .font-size-controls-inline button:hover,
body.high-contrast .contrast-toggle-inline:hover,
body.high-contrast .contrast-toggle-inline.active {
    background: #fff !important;
    color: #000 !important;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.logo-img {
    height: 80px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex: 1;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom: 2px solid #024FB8;
}

/* Main Content */
.main-content {
    position: relative;
    min-height: 500px;
    padding: 60px 40px 100px;
    background: #f8f9fa;
    overflow: hidden;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(200, 210, 220, 0.3) 100%);
    pointer-events: none;
}

.wave-decoration::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(150, 160, 170, 0.2);
    border-radius: 50%;
}

.wave-decoration::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(150, 160, 170, 0.2);
    border-radius: 50%;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.625rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.title-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-line {
    width: 60px;
    height: 2px;
    background: #024FB8;
}

.title-diamond {
    width: 12px;
    height: 12px;
    background: #024FB8;
    transform: rotate(45deg);
}

.content-text {
    text-align: justify;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 25px;
    color: #444;
    font-size: 0.9375rem;
}

/* Hero Section - Main Page */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    text-align: center;
    padding: 100px 40px;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.hero-section .title-decorator {
    margin-bottom: 40px;
}

.hero-section p {
    max-width: 650px;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #555;
}

.hero-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #024FB8;
    color: white;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #023A8A;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #024FB8;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #024FB8;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #024FB8;
    color: white;
}

/* About Page - Feature Cards */
.intro-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #444;
    max-width: 700px;
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 79, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #024FB8;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Services Page - Service Cards */
.services-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    min-height: 100%;
    background: #024FB8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-content {
    padding: 25px 30px;
    flex: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.service-tag {
    background: rgba(2, 79, 184, 0.08);
    color: #024FB8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.content-wrapper.wide {
    max-width: 900px;
}

/* Footer */
.footer {
    background: #e8eaed;
    padding: 50px 40px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #024FB8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #024FB8;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

/* Copyright Bar */
.copyright {
    background: #024FB8;
    color: white;
    text-align: center;
    padding: 15px 40px;
    font-size: 0.8125rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card.full-width {
    grid-column: 1 / -1;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 79, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #024FB8;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.contact-card .highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #024FB8;
    display: block;
    margin-bottom: 5px;
}

.contact-card .sub-info {
    font-size: 0.8125rem;
    color: #888;
    margin-top: 8px;
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-row .day {
    color: #555;
    font-weight: 500;
}

.contact-hours-row .time {
    color: #024FB8;
    font-weight: 600;
}

.emergency-card {
    background: linear-gradient(135deg, #024FB8 0%, #0366D4 100%);
    color: white;
}

.emergency-card .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.emergency-card h3 {
    color: white;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
}

.emergency-card .highlight {
    color: white;
}

.emergency-card .sub-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-email-link {
    color: #024FB8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-email-link:hover {
    color: #023A8A;
    text-decoration: underline;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-image.full-width {
    grid-column: 1 / -1;
}

.gallery-image.full-width img {
    height: 350px;
}

/* Map Card */
.map-card {
    grid-column: 1 / -1;
}

.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* PDF Downloads Page */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.pdf-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pdf-card-header {
    background: #024FB8;
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pdf-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdf-card-header h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.pdf-card-body {
    padding: 25px;
}

.pdf-card-body p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #024FB8;
    color: white;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.pdf-download-btn:hover {
    background: #023A8A;
}

.pdf-download-btn svg {
    flex-shrink: 0;
}

.pdf-grid.single-card {
    display: flex;
    justify-content: center;
}

.pdf-grid.single-card .pdf-card {
    max-width: 450px;
    width: 100%;
}

/* Project Card */
.project-card .project-card-image {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.project-card .project-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-hashtags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.project-hashtags span {
    color: #024FB8;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Team Page */
.team-section {
    margin-bottom: 50px;
}

.team-section:last-child {
    margin-bottom: 0;
}

.team-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #024FB8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 79, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #024FB8;
    flex-shrink: 0;
}

.team-card-content {
    flex: 1;
}

.team-card-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.team-card-role {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: 'Open Sans', sans-serif;
}

.cookie-consent-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    color: #333;
}

.cookie-consent-banner p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.cookie-consent-banner .cookie-consent-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-consent-banner .cookie-consent-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #555;
    cursor: pointer;
}

.cookie-consent-banner .cookie-consent-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #024FB8;
}

.cookie-consent-button {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s, transform 0.2s;
}

.cookie-consent-button:hover {
    transform: translateY(-2px);
}

.cookie-consent-button.btn-success {
    background: #024FB8;
    color: white;
}

.cookie-consent-button.btn-success:hover {
    background: #023A8A;
}

.cookie-consent-button.btn-outline {
    background: transparent;
    border: 2px solid #024FB8;
    color: #024FB8;
}

.cookie-consent-button.btn-outline:hover {
    background: rgba(2, 79, 184, 0.1);
}

.cookie-consent-button.btn-grayscale {
    background: #e0e0e0;
    color: #555;
}

.cookie-consent-button.btn-grayscale:hover {
    background: #d0d0d0;
}

/* Mobile Maps FAB */
.maps-fab {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #024FB8;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(2, 79, 184, 0.4);
    z-index: 999;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.maps-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 79, 184, 0.5);
}

.maps-fab svg {
    flex-shrink: 0;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.625rem;
    gap: 4px;
    padding: 6px 8px;
    transition: color 0.2s;
}

.mobile-nav-item svg {
    flex-shrink: 0;
}

.mobile-nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #024FB8;
}

.mobile-nav-item.active svg {
    stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .nav-container {
        display: none;
    }

    /* Show/hide desktop vs mobile elements */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .accessibility-controls {
        display: none !important;
    }

    /* Show logo in top bar on mobile - centered */
    .top-bar {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 15px;
    }

    .top-bar-logo {
        display: flex;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .top-bar-title {
        display: none;
    }

    .btn-online {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .btn-online svg {
        width: 14px;
        height: 14px;
    }

    /* Construction banner mobile */
    .construction-banner {
        font-size: 0.75rem;
        padding: 10px 15px;
        text-align: center;
    }

    .construction-banner svg {
        width: 16px;
        height: 16px;
    }

    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
    }

    /* Show maps FAB on mobile */
    .maps-fab {
        display: flex;
    }

    /* Add padding to body bottom for mobile nav */
    body {
        padding-bottom: 70px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        width: 100%;
        min-height: 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .pdf-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-image img,
    .gallery-image.full-width img {
        height: 200px;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 80px;
        padding: 20px;
    }

    .cookie-consent-button {
        width: 100%;
        margin-right: 0;
    }

    .main-content {
        padding: 40px 20px 60px;
    }

    .footer {
        padding: 40px 20px;
    }
}
