/* Add a container for page margins */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    background: #222;
}

@media (max-width: 768px) {
    .page-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #181a1b;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* Add wrapper for navbar alignment */
.navbar-wrapper {
    width: 100%;
    background: #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar {
    position: relative;
    width: 100%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    flex-shrink: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #007a3d;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #222;
    border-top: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #333;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #f5f5f5;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: #333;
    color: #00b16a;
}

.mobile-menu-actions {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-actions .btn {
    width: 100%;
    text-align: center;
}

/* Desktop - ensure header actions are visible */
@media (min-width: 769px) {
    .navbar {
        padding: 0 3rem;
    }

    .header-actions {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn {
    padding: 0.6em 1.4em;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.device-logos-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    height: 80px;
}

.device-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-once 16s linear infinite;
    width: max-content;
    padding-left: 50vw;
}

.device-logos img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s, transform 0.3s;
}

.device-logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-once {
    0% {
        transform: translateX(-50vw);
    }

    100% {
        transform: translateX(calc(-100% - 50vw));
    }
}


.btn-primary {
    background: linear-gradient(90deg, #007a3d 0%, #00b16a 100%);
    color: #fff;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #00b16a;
    border: 2px solid #00b16a;
}

.btn-outline:hover {
    background: #007a3d;
    color: #fff;
}

.hero {
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
    background: linear-gradient(120deg, #222 60%, #007a3d 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: italic;
    color: #00b16a;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cfcfcf;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.supported-devices {
    padding: 3rem 2rem;
    background: #181a1b;
    color: #fff;
    text-align: center;
}

.supported-devices h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.video-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 40%;
    padding: 2rem;
}

.video-overlay h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 60px;
        position: relative;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo img {
        height: 150px !important;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .hero {
        padding: 4rem 1rem 3rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .code-video-panel {
        height: 300px !important;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .code-video-panel video {
        display: none !important;
    }

    .code-video-panel div[style*="background:rgba"] {
        display: none !important;
    }

    .video-overlay {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        color: #fff;
        z-index: 10;
        padding: 3rem 1rem;
        margin: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        box-sizing: border-box;
    }

    .video-overlay h2 {
        font-size: 1.6rem;
        color: #00b16a;
        margin-bottom: 1rem;
    }

    .video-overlay p {
        font-size: 1rem;
        color: #cfcfcf;
        line-height: 1.6;
    }

    /* Features section mobile styles */
    .features-overview {
        padding: 3rem 1rem !important;
    }

    .features-overview h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }

    .features-overview div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .features-overview div[style*="background: #222"] {
        padding: 1.5rem !important;
    }

    .features-overview h3 {
        font-size: 1.3rem !important;
    }

    .features-overview p {
        font-size: 0.95rem !important;
    }

    /* Container responsive padding */
    .container {
        padding: 0 1rem;
    }

    /* General section padding adjustments */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Button improvements for mobile */
    .btn {
        padding: 0.8em 1.5em;
        font-size: 1rem;
    }

    /* Improve readability on mobile */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Device logos scrolling adjustment */
    .device-logos-container {
        height: 60px;
    }

    .device-logos img {
        height: 40px;
    }
}

/* Solutions page styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solutions-overview {
    padding: 4rem 0;
    background: #181a1b;
    text-align: center;
}

.solutions-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00b16a;
    font-weight: 700;
}

.solutions-overview .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-components {
    padding: 4rem 0;
    background: #222;
}

.solution-components h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.component-card {
    background: #181a1b;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.15);
}

.component-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.component-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00b16a;
    font-weight: 600;
    text-align: center;
}

.component-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-card li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.component-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b16a;
    font-weight: bold;
}

.benefits {
    padding: 4rem 0;
    background: #181a1b;
}

.benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00b16a;
    font-weight: 600;
}

.benefit-item p {
    color: #cfcfcf;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(120deg, #222 60%, #007a3d 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cfcfcf;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .component-grid {
        grid-template-columns: 1fr;
    }

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

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

    .solutions-overview h2,
    .solution-components h2,
    .benefits h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Pricing page styles */
.pricing-section {
    padding: 4rem 0;
    background: #181a1b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #222;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 2px solid #333;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.15);
    border-color: #007a3d;
}

.pricing-card-featured {
    border-color: #00b16a;
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.2);
}

.pricing-card-featured:hover {
    transform: translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #007a3d 0%, #00b16a 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #00b16a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #cfcfcf;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
}

.period {
    font-size: 1rem;
    color: #cfcfcf;
    max-width: 120px;
    text-align: left;
    line-height: 1.2;
}

.pricing-description {
    color: #cfcfcf;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    color: #cfcfcf;
    font-weight: 500;
}

.feature-value {
    color: #f5f5f5;
    font-weight: 600;
}

.pricing-footer {
    text-align: center;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: block;
    text-align: center;
}

.pricing-notes {
    margin-top: 4rem;
    text-align: center;
}

.pricing-notes h3 {
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
    font-weight: 700;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cfcfcf;
    font-size: 1rem;
}

.faq-section {
    padding: 4rem 0;
    background: #222;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #181a1b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.faq-item h4 {
    color: #00b16a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #cfcfcf;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card-featured {
        border-color: #00b16a;
        box-shadow: 0 8px 32px rgba(0, 122, 61, 0.2);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .price {
        flex-direction: column;
        gap: 0.25rem;
    }

    .period {
        text-align: center;
        max-width: none;
    }

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

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

    .pricing-notes h3,
    .faq-section h2 {
        font-size: 2rem;
    }
}

/* Documentation page styles */
.docs-overview {
    padding: 4rem 0;
    background: #181a1b;
}

.docs-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.status-card {
    background: #222;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
}

.status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.status-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-card h2 {
    font-size: 1.8rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.status-badge {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    width: fit-content;
    min-width: 150px;
}

.status-development {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}

.status-available {
    background: rgba(0, 177, 106, 0.2);
    color: #00b16a;
    border: 1px solid #00b16a;
}

.status-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.coming-soon {
    background: #181a1b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.coming-soon h4 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.coming-soon ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-soon li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.coming-soon li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.github-link {
    text-align: center;
    margin-top: 1.5rem;
}

.docs-resources {
    padding: 4rem 0;
    background: #222;
}

.docs-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: #181a1b;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.15);
}

.resource-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: #00b16a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #00b16a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.resource-link:hover {
    color: #007a3d;
}

.docs-upcoming {
    padding: 4rem 0;
    background: #181a1b;
}

.docs-upcoming h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.upcoming-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.upcoming-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    padding: 2rem 0 2rem 4rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: #00b16a;
    border-radius: 50%;
    border: 3px solid #181a1b;
}

.timeline-content h3 {
    color: #00b16a;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: #f39c12;
    font-weight: 500;
    font-size: 0.9rem;
}

.docs-support {
    padding: 4rem 0;
    background: #222;
}

.docs-support h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.support-card {
    background: #181a1b;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.15);
}

.support-card h3 {
    color: #00b16a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .docs-status {
        grid-template-columns: 1fr;
    }

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

    .support-options {
        grid-template-columns: 1fr;
    }

    .upcoming-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-marker {
        left: 7px;
    }

    .docs-overview h2,
    .docs-resources h2,
    .docs-upcoming h2,
    .docs-support h2 {
        font-size: 2rem;
    }
}

/* 404 Error page styles */
.error-suggestions {
    padding: 4rem 0;
    background: #222;
}

.error-suggestions h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
    font-weight: 700;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.suggestion-card {
    background: #181a1b;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.suggestion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 61, 0.15);
}

.suggestion-card h3 {
    font-size: 1.4rem;
    color: #00b16a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.suggestion-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.suggestion-link {
    color: #00b16a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.suggestion-link:hover {
    color: #007a3d;
}

@media (max-width: 768px) {
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .error-suggestions h2 {
        font-size: 2rem;
    }
}