﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafcfc;
    color: #1a2c3e;
    line-height: 1.5;
}
/* Navigation */
.main-header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b3b3f, #1f6e6b, #e67e22);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 600;
        color: #1f3e48;
        transition: 0.2s;
        cursor: pointer;
    }

        .nav-links a:hover, .nav-links a.active {
            color: #e67e22;
        }

.menu-icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}
/* Second menu */
.second-menu {
    background: #f8fafc;
    border-top: 1px solid #e2edf0;
    border-bottom: 1px solid #e2edf0;
    padding: 0.5rem 2rem;
    overflow-x: auto;
}

    .second-menu ul {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        gap: 2rem;
        list-style: none;
    }

        .second-menu ul li a {
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            color: #2c5a6e;
        }

.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}
/* Hero + Search */
.hero-search {
    background: linear-gradient(120deg, #eef6f3, #ffffff);
    border-radius: 32px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.search-wrapper {
    max-width: 700px;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .search-wrapper input {
        flex: 3;
        padding: 14px 20px;
        border-radius: 60px;
        border: 1px solid #cbdde6;
        font-size: 1rem;
        outline: none;
    }

    .search-wrapper button {
        background: #1f6e6b;
        border: none;
        padding: 0 28px;
        border-radius: 60px;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

.adv-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filter-badge {
    background: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #cbdde6;
    transition: 0.2s;
}

    .filter-badge.active, .filter-badge:hover {
        background: #1f6e6b;
        color: white;
        border-color: #1f6e6b;
    }
/* Layout */
.flex-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-content {
    flex: 3;
    min-width: 260px;
}

.sidebar {
    flex: 1;
    min-width: 250px;
}
/* Cards */
.section-title {
    font-size: 1.6rem;
    margin: 1rem 0 1rem;
    border-left: 5px solid #e67e22;
    padding-left: 1rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ai-card {
    background: white;
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid #e2edf0;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

    .ai-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.05);
    }

    .ai-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .ai-card p {
        color: #4a6272;
        font-size: 0.85rem;
        margin: 0.5rem 0;
    }

.card-cat {
    font-size: 0.7rem;
    background: #eef2fc;
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-right: 8px;
}

.btn-sm {
    display: inline-block;
    margin-top: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: #1f6e6b;
}
/* Blog */
.blog-post {
    background: white;
    border-radius: 24px;
    padding: 1.4rem;
    margin-bottom: 1.8rem;
    border: 1px solid #eef2f0;
}

.blog-meta {
    font-size: 0.75rem;
    color: #7b8c9b;
    margin: 0.5rem 0;
}
/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 24px;
    padding: 1.4rem;
    margin-bottom: 1.8rem;
    border: 1px solid #e2edf0;
}

.ad-container {
    background: #f5f7fa;
    text-align: center;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    font-size: 0.7rem;
    border: 1px dashed #cbd5e1;
}
/* Stats & Pagination */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    gap: 8px;
    margin: 1rem 0;
}

.page-btn {
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid #cbdde6;
    background: white;
    cursor: pointer;
}

    .page-btn.active-page {
        background: #1f6e6b;
        color: white;
    }

footer {
    background: #0a2f2c;
    color: #cfdfda;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}
    footer p {
        margin: 0rem;
    }
@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
}
/* Admin Panel simulation */
.admin-panel {
    display: none;
    background: #fef9e6;
    border-radius: 28px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #ffe0a3;
}

    .admin-panel.show {
        display: block;
    }

.admin-form input, .admin-form textarea {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
}



    .company-details-hero {
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        padding: 3rem 0;
        border-bottom: 1px solid #e2edf0;
    }

    .company-detail-logo {
        width: 100px;
        height: 100px;
        object-fit: contain;
        background: white;
        border-radius: 20px;
        padding: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .company-detail-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #1f6e6b 0%, #0b3b3f 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .detail-card {
        background: white;
        border-radius: 20px;
        border: 1px solid #e2edf0;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }

    .detail-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .detail-card-title {
        background: #f8fafc;
        padding: 1rem 1.5rem;
        margin: 0;
        font-size: 1.3rem;
        border-bottom: 1px solid #e2edf0;
    }

    .detail-card-body {
        padding: 1.5rem;
    }

    .info-table {
        width: 100%;
    }

    .info-table tr {
        border-bottom: 1px solid #f0f0f0;
    }

    .info-table td {
        padding: 10px 0;
    }

    .tech-tag {
        display: inline-block;
        background: #eef2fc;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        margin: 0 5px 5px 0;
        color: #1f6e6b;
    }

    .service-item {
        text-align: center;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 12px;
        transition: transform 0.3s;
    }

    .service-item:hover {
        transform: translateY(-3px);
    }

    .service-icon {
        font-size: 2rem;
        color: #1f6e6b;
        margin-bottom: 0.5rem;
    }

    .share-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .share-btn {
        padding: 8px 16px;
        border-radius: 40px;
        text-decoration: none;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        transition: transform 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        color: white;
    }

    .share-btn.twitter { background: #1DA1F2; }
    .share-btn.linkedin { background: #0077B5; }
    .share-btn.facebook { background: #4267B2; }
    .share-btn.email { background: #6c757d; }

    .sidebar-card {
        background: white;
        border-radius: 20px;
        padding: 1.2rem;
        border: 1px solid #e2edf0;
    }

    .sidebar-card h5 {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e67e22;
        display: inline-block;
    }

    .related-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .related-item:last-child {
        border-bottom: none;
    }

    .related-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
        border-radius: 8px;
    }

    .related-icon {
        width: 40px;
        height: 40px;
        background: #f0f0f0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f6e6b;
    }

    .category-widget {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cat-link {
        padding: 6px 14px;
        background: #f1f5f9;
        border-radius: 30px;
        text-decoration: none;
        color: #2c5a6e;
        font-size: 0.8rem;
        transition: all 0.2s;
    }

    .cat-link:hover {
        background: #1f6e6b;
        color: white;
    }

    .ad-container {
        background: #f8f9fa;
        border: 1px dashed #cbd5e1;
        border-radius: 12px;
        padding: 2rem;
        color: #6c8b9b;
    }

    .breadcrumb {
        padding: 0;
        margin-bottom: 1rem;
    }

    .breadcrumb-item a {
        text-decoration: none;
        color: #1f6e6b;
    }

    @media (max-width: 768px) {
        .company-details-hero {
            padding: 1.5rem 0;
            text-align: center;
        }
        .company-detail-logo, .company-detail-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
        }
        .share-buttons {
            justify-content: center;
        }
    }


.blog-hero {
    background: linear-gradient(135deg, #1f6e6b 0%, #0b3b3f 100%);
    color: white;
    padding: 3rem 0;
}

.blog-search-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.filter-chip {
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .filter-chip:hover, .filter-chip.active {
        background: white;
        color: #1f6e6b;
    }

    .filter-chip .count {
        font-size: 0.7rem;
        opacity: 0.8;
    }

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e67e22;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c8b9b;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .blog-title a {
        color: #1a2c3e;
        text-decoration: none;
    }

        .blog-title a:hover {
            color: #1f6e6b;
        }

.blog-excerpt {
    color: #4a6272;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2edf0;
}

.blog-author {
    font-size: 0.85rem;
    color: #6c8b9b;
}

.read-more {
    color: #1f6e6b;
    text-decoration: none;
    font-weight: 600;
}

    .read-more:hover {
        text-decoration: underline;
    }

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2edf0;
}

    .sidebar-widget h4 {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e67e22;
        display: inline-block;
    }

.category-list {
    list-style: none;
    padding: 0;
}

    .category-list li {
        margin-bottom: 0.75rem;
    }

    .category-list a {
        text-decoration: none;
        color: #2c5a6e;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .category-list a:hover {
            color: #1f6e6b;
        }

    .category-list .badge {
        background: #eef2fc;
        color: #1f6e6b;
        padding: 2px 8px;
        border-radius: 20px;
    }

.popular-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2edf0;
}

    .popular-item:last-child {
        border-bottom: none;
    }

.popular-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.popular-meta {
    font-size: 0.7rem;
    color: #6c8b9b;
}

.ad-container {
    background: #f8f9fa;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem;
    color: #6c8b9b;
}

@media (max-width: 768px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

.blog-details-hero {
    background: #f8fafc;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #e2edf0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.blog-category {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-meta-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: #6c8b9b;
    font-size: 0.9rem;
}

.featured-image img {
    width: 100%;
    border-radius: 16px;
}

.blog-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

    .blog-body h2 {
        font-size: 1.8rem;
        margin: 1.5rem 0 1rem;
    }

    .blog-body h3 {
        font-size: 1.4rem;
        margin: 1.2rem 0 0.8rem;
    }

    .blog-body p {
        margin-bottom: 1.2rem;
    }

    .blog-body img {
        max-width: 100%;
        border-radius: 12px;
        margin: 1rem 0;
    }

    .blog-body blockquote {
        border-left: 4px solid #1f6e6b;
        padding: 0.8rem 1.5rem;
        margin: 1.5rem 0;
        background: #f8fafc;
        font-style: italic;
    }

.blog-tags .tag {
    display: inline-block;
    background: #eef2fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin: 0 5px 5px 0;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    transition: opacity 0.3s;
}

    .share-btn:hover {
        opacity: 0.8;
        color: white;
    }

    .share-btn.twitter {
        background: #1DA1F2;
    }

    .share-btn.linkedin {
        background: #0077B5;
    }

    .share-btn.facebook {
        background: #4267B2;
    }

    .share-btn.email {
        background: #6c757d;
    }

.comment-form-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid #e2edf0;
}

.comment-avatar {
    flex-shrink: 0;
    color: #1f6e6b;
}

.comment-content {
    flex: 1;
}

.comment-header {
    margin-bottom: 0.5rem;
}

.comment-author {
    font-size: 1rem;
    margin-right: 15px;
}

.comment-date {
    font-size: 0.75rem;
    color: #6c8b9b;
}

.comment-text {
    color: #4a6272;
    line-height: 1.5;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2edf0;
}

    .sidebar-widget h4 {
        margin-bottom: 1rem;
        border-bottom: 2px solid #e67e22;
        display: inline-block;
    }

.related-post {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2edf0;
}

    .related-post:last-child {
        border-bottom: none;
    }

    .related-post a {
        display: flex;
        gap: 12px;
        text-decoration: none;
    }

.related-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-info {
    flex: 1;
}

.related-title {
    font-weight: 600;
    color: #1a2c3e;
    margin-bottom: 4px;
}

.related-date {
    font-size: 0.7rem;
    color: #6c8b9b;
}

.ad-container {
    background: #f8f9fa;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem;
    color: #6c8b9b;
}

@media (max-width: 768px) {
    .blog-meta-large {
        gap: 15px;
        font-size: 0.75rem;
    }

    .blog-body {
        font-size: 0.95rem;
    }
}






/* inner content with playful layout */


/* 3D floating effect for illustration zone */
.illustration {
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.glitch-wrapper {
    display: inline-block;
    position: relative;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e3c5c, #2b4c7a, #0f2b42);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 8px 8px 20px rgba(0, 0, 0, 0.08);
    line-height: 1;
    transition: transform 0.2s ease;
}

.zero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 76, 122, 0.1);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 0.15rem;
    backdrop-filter: blur(4px);
}

/* decorative floating elements */
.float-bg {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.1) 0%, rgba(100, 149, 237, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.float-bg-2 {
    bottom: -30px;
    right: -20px;
    top: auto;
    left: auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 140, 100, 0.08) 0%, rgba(255, 140, 100, 0) 70%);
}



.description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2c3e50;
    max-width: 500px;
    margin: 0 auto 1.8rem auto;
    font-weight: 400;
    opacity: 0.85;
}

.search-suggestion {
    background: #f1f5f9;
    border-radius: 60px;
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 420px;
    width: 100%;
    margin: 0 auto 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255,255,255,0.8);
    border: 1px solid #e2e8f0;
}

    .search-suggestion input {
        border: none;
        background: transparent;
        padding: 0.85rem 0;
        font-size: 0.95rem;
        font-family: 'Inter', monospace;
        flex: 1;
        outline: none;
        color: #1e293b;
    }

        .search-suggestion input::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }

    .search-suggestion button {
        background: #1e3c5c;
        border: none;
        color: white;
        font-size: 1rem;
        padding: 0.65rem 1.4rem;
        border-radius: 40px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
    }

        .search-suggestion button:hover {
            background: #0f2b42;
            transform: scale(0.97);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
}

.btn-primary {
    background: #1e3c5c;
    color: white;
    box-shadow: 0 6px 14px rgba(30, 60, 92, 0.25);
    border: 1px solid rgba(255,255,255,0.2);
}

    .btn-primary:hover {
        background: #12324b;
        transform: translateY(-3px);
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1e3c5c;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .btn-secondary:hover {
        background: white;
        border-color: #94a3b8;
        transform: translateY(-2px);
    }

/* fun little 404 character vibe */
.lost-robot {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 1rem 0 0.5rem;
    font-size: 2.4rem;
    opacity: 0.7;
    letter-spacing: 8px;
}


@media (max-width: 620px) {
    .error-content {
        padding: 2rem 1.5rem 2.5rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .zero-icon {
        width: 65px;
        height: 65px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .search-suggestion {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 0.8rem;
    }

        .search-suggestion input {
            background: #f1f5f9;
            border-radius: 60px;
            padding: 0.85rem 1.5rem;
            width: 100%;
            text-align: center;
        }

        .search-suggestion button {
            width: 100%;
            justify-content: center;
        }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
        justify-content: center;
    }
}


/* subtle hover animation */
.error-container:hover .error-code {
    transform: scale(1.01);
}

/* accessibility focus */
button:focus-visible, a:focus-visible {
    outline: 3px solid #2b4c7a;
    outline-offset: 2px;
    border-radius: 40px;
}

