/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --honey-yellow: #F9C846;
    --honey-amber: #F0A830;
    --honey-dark: #E39827;
    --bee-black: #2F2F2F;
    --cream-bg: #F5F5EF;
    --leaf-green: #84A982;
    --font-mono: "Space Grotesk", "SF Mono", monospace;
    --font-sans: "Inter", -apple-system, system-ui, sans-serif;
    --font-display: "Work Sans", var(--font-sans);
}

body {
    font-family: var(--font-sans);
    font-feature-settings: "ss01", "ss02", "zero";
    -webkit-font-smoothing: antialiased;
    background-color: var(--cream-bg);
    color: var(--bee-black);
    line-height: 1.6;
    font-size: 16px;
}

/* Update base link styles */
a {
    text-decoration: none;
    color: #707070;
}

.highlight-text {
    color: var(--honey-amber);
    font-weight: 700;
}

/* Honeycomb pattern background */
.honeycomb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%23F9C846' stroke-width='1'%3E%3Cpath d='M10 28.5l4-7 4 7-4 7z'/%3E%3Cpath d='M10 14.5l4-7 4 7-4 7zM18 7.5l4-7 4 7-4 7z'/%3E%3Cpath d='M18 35.5l4-7 4 7-4 7z'/%3E%3Cpath d='M2 7.5l4-7 4 7-4 7zM2 35.5l4-7 4 7-4 7z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation - Enhanced for scientific accuracy */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(249, 200, 70, 0.3);
    z-index: 1000;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Update Logo and Organization styling */
.site-name {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced from 12px */
}

.org-info {
    display: flex;
    flex-direction: column;
    gap: 0px; /* Reduced from 1px */
    margin-top: -2px; /* Increased negative margin for tighter alignment */
}

.org-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    color: #333;
    line-height: 1.1; /* Tighter than before */
}

.org-dept {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    color: #666;
    text-transform: uppercase;
    line-height: 1.1; /* Tighter than before */
}

/* Remove old styles */
.site-title,
.site-title::after {
    display: none;
}

@media (max-width: 768px) {
    .org-name {
        font-size: 0.75rem;
    }
    
    .org-dept {
        font-size: 0.7rem;
    }
}

.logo-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bee-logo {
    width: auto;
    height: 38px;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
    transition: all 0.3s ease;
}

/* Optional hover effect */
.site-name:hover .bee-logo {
    filter: invert(72%) sepia(87%) saturate(1246%) hue-rotate(349deg) brightness(101%) contrast(96%);
    transform: scale(1.05);
}

.site-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
}

.site-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--honey-yellow), transparent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    color: #666;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
    cursor: pointer;
}

.nav-link .highlight-text {
    color: var(--honey-dark);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--honey-amber);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--honey-dark);
}

/* Map area */
.map-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: #f8f8f6;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 245, 239, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-update-note {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #707070;
    z-index: 100;
    border-left: 3px solid var(--honey-amber);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bee-icon {
    font-size: 0.9rem;
}

.bee-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--honey-amber);
}

/* Mark pins for the Leaflet map */
.map-pin-icon {
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    position: relative;
    background-color: var(--honey-yellow);
    opacity: 0.7;
}

.map-pin-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
}

.map-pin-icon.highlight {
    background-color: var(--honey-amber);
    opacity: 1;
}

.bee-marker {
    width: 36px;
    height: 36px;
}

/* Dim markers on the map */
.leaflet-marker-icon {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.leaflet-marker-icon:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Highlight observed markers */
.observed-marker {
    filter: saturate(1.2);
}

/* Gray out memory markers more */
.memory-marker {
    opacity: 0.5;
}

/* Add a subtle grid overlay to the map */
.map-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 10;
}

/* Error message - more responsive width and shorter height */
.error-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 1rem 1.8rem; /* Reduced vertical padding even more */
    max-width: min(95%, 900px); /* Increased width from previous */
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 20;
    position: relative;
    border: 1px solid var(--honey-yellow);
    border-top: 4px solid var(--honey-yellow); /* Reduced from 5px */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.error-container > * {
    width: 100%; /* Keep all direct children full width */
    margin-bottom: 0.8rem; /* Add consistent margin for all elements */
}

.error-container > *:last-child {
    margin-bottom: 0; /* Remove margin from last element */
}

.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem; /* Further reduced margin */
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 2.8rem); /* Reduced font size */
    color: #333;
    letter-spacing: -0.03em;
    line-height: 0.9; /* Tighter line height */
}

.error-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem; /* Reduced font size */
    margin-bottom: 0.5rem; /* Reduced margin */
    color: var(--bee-black);
    letter-spacing: -0.01em;
    line-height: 1.2; /* Tighter line height */
}

.error-message {
    color: #707070;
    margin-bottom: 1rem; /* Reduced margin */
    line-height: 1.4; /* Tighter line height */
}

/* More horizontal layout for desktop */
@media (min-width: 769px) {
    .submission-container {
        margin-top: 0.8rem; /* Further reduced margin */
        padding: 1rem; /* Reduced padding */
    }
    
    .welcome-note {
        margin-top: 0.8rem; /* Further reduced margin */
        font-size: 0.75rem; /* Smaller font */
    }
    
    .discontinued-section {
        margin-top: 0.8rem; /* Further reduced margin */
        padding-top: 0.8rem; /* Reduced padding */
        border-top: 1px dashed rgba(0,0,0,0.1);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .error-container {
        flex-direction: column;
        width: calc(100% - 3rem); /* Increased side margins */
        max-width: 400px; /* Limit max width on mobile */
        padding: 1rem;
        margin: 1rem auto;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Hide form section on mobile */
    .submission-container,
    .submission-label {
        display: none;
    }
    
    /* Adjust spacing when form is hidden */
    .welcome-note {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        border-top: 1px dashed rgba(0,0,0,0.1);
    }
    
    .error-404 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .error-title {
        font-size: 1.1rem;
    }
    
    .error-message br {
        display: none; /* Remove line break in error message for better mobile flow */
    }
    
    .error-message {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }
}

/* Reduce submission area elements */
.submission-label {
    font-size: 0.7rem; /* Smaller font */
    margin-bottom: 3px; /* Reduced margin */
}

.input-field {
    padding: 0.6rem 1rem; /* Reduced padding */
    margin-bottom: 0.8rem; /* Reduced margin */
}

.submission-options {
    gap: 0.8rem; /* Reduced gap */
    margin-bottom: 1rem; /* Reduced margin */
}

.form-footer {
    margin-top: 0.8rem; /* Reduced margin */
    padding-top: 0.5rem; /* Reduced padding */
    font-size: 10px; /* Smaller font */
}

/* 404 Error Display */
.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    color: #333;
    letter-spacing: -0.03em;
    line-height: 1;
}

.error-404 .logo-zero {
    position: relative;
    width: clamp(2.5rem, 8vw, 3.5rem);
    height: clamp(2.5rem, 8vw, 3.5rem);
    margin: 0 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404 .logo-zero img {
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: grayscale(30%);
}

.error-404 .logo-zero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    pointer-events: none;
}

/* Submission area */
.submission-container {
    background-color: rgba(249, 200, 70, 0.07);
    border: 1px solid rgba(240, 168, 48, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.submission-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(249, 200, 70, 0), var(--honey-amber), rgba(249, 200, 70, 0));
    opacity: 0.3;
}

/* Only apply not-allowed cursor to disabled elements */
.input-field,
.radio-input,
.submit-button,
.export-button {
    cursor: not-allowed;
}

.input-field {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: rgba(240, 240, 240, 0.5);
    color: #999;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.submission-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    background-color: rgba(240, 240, 240, 0.3);
}

.radio-input {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #D0D0D0;
    background-color: #F0F0F0;
}

.submit-button {
    background-color: rgba(240, 240, 240, 0.5);
    color: #999;
    border: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.welcome-note {
    color: #888;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    letter-spacing: 0.02em;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 550px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--bee-black);
    letter-spacing: -0.01em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #707070;
    line-height: 1;
}

.modal-content {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-content p {
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-content h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: #444;
}

.modal-content .date-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--honey-amber);
    margin-bottom: 0.2rem;
}

.modal-footer {
    padding: 12px 24px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-logo {
    width: 28px;
    height: auto;
    opacity: 0.25;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--honey-yellow);
    padding-bottom: 0.5rem;
}

.final-entry {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(249, 200, 70, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--honey-amber);
}

.entry-tag {
    display: inline-block;
    background-color: rgba(249, 200, 70, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

/* Last trace more minimal */
.last-trace {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 11px;
    color: #666;
    z-index: 1000;
    max-width: 200px;
    line-height: 1.4;
}

.last-trace-time {
    display: block;
    color: var(--honey-dark);
    font-family: var(--font-mono);
    font-size: 10px;
}

/* Export button styling */
.export-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #666;
    z-index: 1000;
    transition: all 0.2s ease;
}

.export-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0,0,0,0.12);
}

.export-button:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 10px;
    border-radius: 3px;
    white-space: nowrap;
    padding: 4px 8px;
    left: 0;  /* Align to left edge instead of center */
    transform: none;  /* Remove the centering transform */
    
    /* Dynamic positioning based on viewport space */
    top: 100%;
    margin-top: 5px;
}

/* Add media query to handle bottom edge */
@media (max-height: 400px) {
    .export-button:hover::after {
        bottom: 100%;
        top: auto;
        margin-bottom: 5px;
    }
}

/* System Bar - Consistent spacing */
.system-bar {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 8px 2rem;
    background: rgba(250, 250, 248, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    color: #666;
}

/* Footer Styling - Single line layout */
.site-footer {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 8px 2rem;
    background: rgba(250, 250, 248, 0.97);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.footer-copyright, .footer-description {
    white-space: nowrap;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.footer-system {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    white-space: nowrap;
}

/* Only stack on mobile */
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px 1rem;
        text-align: center;
    }

    .footer-system {
        margin-left: 0;
        justify-content: center;
    }

    .error-container {
        width: calc(100% - 3rem);
        max-width: 400px;
        padding: 1rem;
        margin: 1rem auto;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .error-404 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .error-404 .logo-zero {
        width: clamp(2rem, 6vw, 2.5rem);
        height: clamp(2rem, 6vw, 2.5rem);
    }

    .error-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .error-message {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }

    .submission-options {
        gap: 0.5rem;
    }

    .option-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .logo-container {
        width: 42px;
        height: 42px;
    }

    .bee-logo {
        height: 32px;
    }
}

/* Remove the trace-feed styles and HTML element */
.trace-feed {
    display: none;
}

/* Remove redundant archive badge */
.archive-badge {
    display: none;
}

/* Discontinued section styles */
.discontinued-section {
    margin-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 20px;
}

.contributor-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 8px;
}

.discontinued-link {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 3px 0;
}

/* Hamburger menu styling */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1005;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #666;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Better error container mobile responsiveness */
@media (max-width: 768px) {
    /* Mobile navigation */
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Error container mobile optimization */
    .error-container {
        width: calc(100% - 3rem);
        max-width: 400px;
        padding: 1rem;
        margin: 1rem auto;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .error-404 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .error-title {
        font-size: 1.1rem;
    }
    
    .submission-container {
        display: none;
    }
    
    /* Footer mobile optimization */
    .site-footer {
        flex-direction: column;
        padding: 15px 1rem;
        text-align: center;
        gap: 12px;
    }
    
    .footer-row {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-system {
        flex-direction: column;
        margin: 0;
        gap: 6px;
    }
    
    .footer-system .footer-separator {
        display: none;
    }
}

/* Footer row styling for better mobile layout */
.footer-row {
    display: flex;
    align-items: center;
}

@media (min-width: 769px) {
    /* Hide footer rows on desktop as we're using the original layout */
    .footer-row {
        display: inline-flex; /* Use inline-flex to maintain original layout */
    }
}
