/* ==========================================================================
   Columbus Obst & Gemüse GmbH – Stylesheet
   Multi-Page-Struktur, Stand: 12.05.2026
   A11y-Optimierung 09.05.2026: WCAG AA-Kontraste durchgängig erfüllt
   Liefertage-Block /schulobst ergänzt 12.05.2026
   ========================================================================== */

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

/* ===== Base ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}
body.no-scroll { overflow: hidden; }

a:focus-visible {
    outline: 3px solid #f5b800;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2d5f3f;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

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

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    background: #2d5f3f;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== Sidebar ===== */
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #2d5f3f 0%, #1a3a25 100%);
    padding: 30px 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.sidebar h3 {
    color: #ffffff;
    padding: 0 20px 20px 20px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sidebar ul { list-style: none; }

.sidebar ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 20px;
    border-left: 4px solid transparent;
    transition: all 0.25s ease;
    font-size: 14px;
}

.sidebar ul li a:hover {
    background-color: rgba(245, 184, 0, 0.25);
    color: #ffffff;
    border-left-color: #f5b800;
}

.sidebar ul li a.active {
    background-color: rgba(245, 184, 0, 0.25);
    color: #ffffff;
    border-left-color: #f5b800;
    font-weight: 500;
}

.sidebar .nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 15px 20px;
}

/* ===== Main ===== */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    padding: 25px 50px;
    border-bottom: 3px solid #2d5f3f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    display: block;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.company-info .brand {
    color: #2d5f3f;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.1;
}

.company-info .tagline {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 500;
}

.company-info .since {
    color: #8a6500;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

/* ===== Content ===== */
.content {
    padding: 45px 50px;
    background: white;
    margin: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    flex-grow: 1;
}

.content h1 {
    color: #2d5f3f;
    font-size: 30px;
    margin-bottom: 22px;
    border-bottom: 3px solid #f5b800;
    padding-bottom: 12px;
    line-height: 1.2;
}

.content h2 {
    color: #2d5f3f;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.content h3 {
    color: #2d5f3f;
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    font-size: 16px;
}

.content a {
    color: #2d5f3f;
    font-weight: 500;
    text-decoration: underline;
}
.content a:hover { color: #8a6500; }

.content ul {
    margin-left: 20px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.content ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

/* ===== Highlight-Boxen ===== */
.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5f0 100%);
    padding: 25px;
    border-left: 5px solid #f5b800;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.1);
    transform: translateY(-2px);
}

.highlight-box h3 {
    color: #2d5f3f;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
}

.highlight-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

/* ===== Callouts ===== */
.callout-highlight {
    background: #f5b800;
    padding: 16px 20px;
    margin: 25px 0;
    border-radius: 4px;
}
.callout-highlight p { margin: 0; color: #1a3a25; font-weight: 500; }
.callout-highlight a { color: #1a3a25; }

.callout-warning {
    background: #fff8e1;
    padding: 20px;
    border-left: 4px solid #f5b800;
    border-radius: 4px;
    margin: 20px 0;
}
.callout-warning p { margin-bottom: 12px; }
.callout-warning p:last-child { margin-bottom: 0; }

/* ===== Landingpage: Hero ===== */
.hero {
    margin: -45px -50px 35px;
    padding: 60px 50px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3a25 100%);
    color: #ffffff;
    border-radius: 6px 6px 0 0;
}
.hero h1 {
    color: #ffffff;
    font-size: 34px;
    border: none;
    padding: 0;
    margin-bottom: 12px;
    line-height: 1.2;
}
.hero .hero-sub {
    color: #ffd966;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
}
.hero .hero-cta {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5b800;
    color: #1a3a25;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero .hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    color: #1a3a25;
}

/* ===== Landingpage: Sortimentskacheln ===== */
.sortiment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}
.sortiment-card {
    display: block;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.sortiment-card:hover {
    border-color: #2d5f3f;
    box-shadow: 0 4px 14px rgba(45, 95, 63, 0.12);
    transform: translateY(-2px);
    color: inherit;
}
.sortiment-card h3 {
    color: #2d5f3f;
    font-size: 17px;
    margin: 0 0 8px;
}
.sortiment-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}
.sortiment-card .arrow {
    display: inline-block;
    margin-top: 12px;
    color: #8a6500;
    font-weight: bold;
    font-size: 14px;
}

/* ===== Landingpage: Zielgruppen-Bar ===== */
.zielgruppen {
    background: #f0f8f4;
    padding: 25px 30px;
    border-radius: 6px;
    margin: 35px 0;
    border-left: 5px solid #f5b800;
}
.zielgruppen h2 {
    margin-top: 0;
    color: #2d5f3f;
}
.zielgruppen ul {
    columns: 2;
    column-gap: 30px;
    margin: 10px 0 0 20px;
}

/* ===== Footer ===== */
.footer {
    background: #2d5f3f;
    color: #ffffff;
    padding: 25px 50px;
    text-align: center;
    font-size: 13px;
    margin-top: auto;
    border-top: 3px solid #1a3a25;
}

.footer a {
    color: #ffd966;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.footer a:hover { color: #ffffff; text-decoration: underline; }
.footer p { margin: 8px 0; }

/* ===== Convenience-Galerie ===== */
.convenience-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.convenience-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f5f5;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0;
    border: none;
    padding: 0;
    width: 100%;
}

.convenience-gallery .gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 95, 63, 0.18);
}

.convenience-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.convenience-gallery .gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 24px 12px 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.convenience-gallery .gallery-item.hero {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* ==========================================================================
   Liefervereinbarung Schulobst – Download-Block, Schritte, CTA
   Hinzugefügt: Mai 2026
   ========================================================================== */

/* Download-Button */
.btn-download {
    display: inline-block;
    background: #2d5f3f;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none !important;
    border-bottom: 3px solid #f5b800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-download:hover {
    background: #1a3a25;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.download-block {
    text-align: center;
    margin: 30px 0;
}
.download-block .file-meta {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #5a5a5a;
}

/* Schritt-Liste */
.step-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    display: grid;
    gap: 18px;
}
.step-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5f0 100%);
    border-left: 5px solid #f5b800;
    padding: 20px 22px;
    border-radius: 4px;
}
.step-list .step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
}
.step-list .step-body { flex: 1; min-width: 0; }
.step-list h3 {
    color: #2d5f3f;
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: bold;
}
.step-list p {
    margin: 0 0 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
.step-list p:last-child { margin-bottom: 0; }
.step-list .step-hint {
    background: #fff8e1;
    border-left: 3px solid #f5b800;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    border-radius: 2px;
}

/* CTA-Banner auf /schulobst */
.cta-lv-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #2d5f3f;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 4px;
    border-bottom: 4px solid #f5b800;
    margin: 30px 0;
}
.cta-lv-banner .cta-lv-text {
    flex: 1;
    min-width: 240px;
    line-height: 1.5;
    color: #ffffff;
}
.cta-lv-banner .cta-lv-text strong {
    display: block;
    color: #ffd966;
    font-size: 16px;
    margin-bottom: 4px;
}
.cta-lv-banner .btn-cta {
    background: #f5b800;
    color: #1a3a25 !important;
    padding: 11px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none !important;
    font-size: 15px;
    transition: transform 0.2s ease;
    white-space: nowrap;
}
.cta-lv-banner .btn-cta:hover {
    transform: translateY(-1px);
    color: #1a3a25 !important;
}

/* Druck-Spezifika */
@media print {
    .btn-download,
    .download-block .file-meta,
    .cta-lv-banner { display: none; }
    .step-list li {
        background: none;
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .mobile-menu-toggle { display: block; }
    .container { flex-direction: column; }

    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        padding-top: 70px;
        width: 260px;
    }
    .sidebar.open { left: 0; }

    .header {
        padding: 60px 20px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo { width: 100px; }
    .company-info .brand { font-size: 22px; }

    .content { padding: 25px 20px; margin: 15px; }
    .content h1 { font-size: 24px; }
    .content h2 { font-size: 19px; }

    .highlights { grid-template-columns: 1fr; gap: 15px; }

    .footer { padding: 20px; font-size: 11px; }

    .convenience-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .convenience-gallery .gallery-item.hero {
        grid-column: span 2;
        grid-row: auto;
    }

    /* Landingpage mobile */
    .hero {
        margin: -25px -20px 25px;
        padding: 40px 25px;
        border-radius: 6px 6px 0 0;
    }
    .hero h1 { font-size: 24px; }
    .hero .hero-sub { font-size: 15px; }
    .hero p { font-size: 15px; }
    .hero .hero-cta { font-size: 15px; padding: 12px 20px; }
    .sortiment-grid { grid-template-columns: 1fr; gap: 12px; }
    .zielgruppen ul { columns: 1; }

    /* Liefervereinbarung mobile */
    .btn-download { width: 100%; box-sizing: border-box; }
    .cta-lv-banner { flex-direction: column; align-items: stretch; }
    .cta-lv-banner .btn-cta { text-align: center; }
}

@media (max-width: 600px) {
    .convenience-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .convenience-gallery .gallery-item.hero {
        grid-column: auto;
    }
}

@media (max-width: 500px) {
    .content { padding: 20px 15px; margin: 10px; }
    .content h1 { font-size: 22px; }
    .content h2 { font-size: 17px; }
    .content p,
    .content ul li { font-size: 15px; }

    .step-list li { padding: 16px; gap: 14px; }
    .step-list .step-num { width: 32px; height: 32px; font-size: 15px; }
}
/* ==========================================================================
   Sticky Mobile-Call-Button (FAB)
   Hinzugefügt: 10.05.2026
   Sichtbar nur ≤900px Viewport (Mobile + Tablet)
   ========================================================================== */
.fab-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #f5b800;
    color: #1a3a25;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fab-call:hover,
.fab-call:focus-visible {
    background: #ffd966;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #1a3a25;
    outline: 3px solid #2d5f3f;
    outline-offset: 2px;
}

.fab-call:active {
    transform: scale(0.95);
}

.fab-call svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Ausblenden im Druck */
@media print {
    .fab-call { display: none !important; }
}

/* Aktivierung nur auf Mobile/Tablet */
@media (max-width: 900px) {
    .fab-call {
        display: flex;
    }
}
/* ==========================================================================
   Liefertage-Block /schulobst – ergänzt 12.05.2026
   ========================================================================== */

.liefertage-section {
    margin: 40px 0;
}

.liefertage-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.liefertage-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
}

.liefertage-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

.liefertage-table caption.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.liefertage-table thead th {
    background: #f5b800;
    color: #2d5f3f;
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid #2d5f3f;
    position: sticky;
    top: 0;
}

.liefertage-table tbody td {
    padding: 8px 14px;
    border-bottom: 1px solid #eee;
    color: #222;
}

.liefertage-table tbody tr:last-child td {
    border-bottom: none;
}

.liefertage-table tbody tr:hover:not(.ferien):not(.sondertag) {
    background: #fafaf5;
}

.liefertage-table tr.ferien td {
    background: #f5f5f5;
    color: #888;
    font-style: italic;
    text-align: center;
    font-size: 13px;
    padding: 6px 14px;
}

.liefertage-table tr.sondertag td {
    background: #fff8e1;
}

.sondertag-info {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.liefertage-actions {
    margin: 24px 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
}

.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 26px;
    background: #2d5f3f;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid #2d5f3f;
    transition: background 0.15s ease, transform 0.1s ease;
    line-height: 1.3;
    min-width: 280px;
}

.btn-pdf:hover,
.btn-pdf:focus-visible {
    background: #1f4a2e;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-pdf:focus-visible {
    outline: 3px solid #f5b800;
    outline-offset: 2px;
}

.btn-pdf:active {
    transform: translateY(1px);
}

.btn-pdf-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.btn-pdf-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-pdf-label strong {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-pdf-label small {
    font-size: 14px;
    opacity: 0.92;
    font-weight: 400;
}

/* Sekundärer Button: 2026/27 noch nicht verfügbar */
.btn-pdf-soon {
    background: #fff;
    color: #2d5f3f !important;
    border: 1px solid #c5d3c9;
    cursor: pointer;
    font-family: inherit;
}

.btn-pdf-soon:hover,
.btn-pdf-soon:focus-visible {
    background: #f0f7f2;
    color: #2d5f3f !important;
    border-color: #2d5f3f;
}

.btn-pdf-soon .btn-pdf-icon {
    opacity: 0.55;
}

.btn-pdf-soon .btn-pdf-label small {
    color: #6b6b6b;
    font-style: italic;
    opacity: 1;
}

/* Mobile: Buttons volle Breite */
@media (max-width: 600px) {
    .liefertage-actions {
        flex-direction: column;
    }
    .btn-pdf {
        width: 100%;
        min-width: 0;
    }
}

/* ===== Druckansicht ===== */
@media print {
    .sidebar,
    .mobile-menu-toggle,
    .cta-lv-banner,
    .fab-call,
    footer,
    .liefertage-actions {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    main {
        margin: 0;
        padding: 0;
    }

    .liefertage-table {
        font-size: 11pt;
        page-break-inside: avoid;
    }

    .liefertage-table thead th {
        background: #f5b800 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .liefertage-table tr.ferien td {
        background: #f0f0f0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .liefertage-table tr.sondertag td {
        background: #fff8e1 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    a[href]:after {
        content: "";
    }
}
.content ol {
    margin-left: 20px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.content ol li {
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}
/* ============================================================
   404-Seite
   ============================================================ */
.page-404 {
  min-height: calc(100vh - 200px);
  padding: 3rem 0;
}

.hero-404 {
  background: #fff;
  text-align: left;
}

.hero-404 h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2d5f3f;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-404 .lead {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-404 .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-404 .actions .btn {
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.hero-404 .actions .btn-primary {
  background: #2d5f3f;
  color: #fff;
}

.hero-404 .actions .btn-primary:hover {
  background: #1f4a30;
}

.hero-404 .actions .btn-secondary {
  background: #fff;
  color: #2d5f3f;
  border: 2px solid #2d5f3f;
}

.hero-404 .actions .btn-secondary:hover {
  background: #2d5f3f;
  color: #fff;
}

.hero-404 .quick-links {
  background: #f8f8f8;
  padding: 1.75rem 2rem;
  border-radius: 8px;
  border-left: 4px solid #f5b800;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-404 .quick-links h2 {
  font-size: 1.15rem;
  color: #2d5f3f;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.hero-404 .quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-404 .quick-links li {
  margin-bottom: 0.5rem;
}

.hero-404 .quick-links li:last-child {
  margin-bottom: 0;
}

.hero-404 .quick-links a {
  color: #2d5f3f;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.hero-404 .quick-links a:hover {
  border-bottom-color: #f5b800;
}

.hero-404 .phone-hint {
  font-size: 1rem;
  color: #555;
  margin-top: 2rem;
}

.hero-404 .phone-hint a {
  color: #2d5f3f;
  font-weight: 600;
  text-decoration: none;
}

.hero-404 .phone-hint a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero-404 .actions {
    flex-direction: column;
  }
  .hero-404 .actions .btn {
    width: 100%;
    text-align: center;
  }
}