/* Fixes for the website based on feedback */

/* Fix for duplicate navigation in mobile view */
.mobile-nav-link.duplicate {
    display: none;
}

/* Image sizing adjustments */
.hero-image img,
.about-image img,
.product-image img,
.blog-image img,
.testimonial-image img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product cards adjustments */
.product-card {
    max-height: 450px;
    overflow: hidden;
}

.product-image {
    height: 180px !important;
}

/* Remove stats from product sections */
.category-stats {
    display: none;
}

/* Simplify partnership section */
.process-timeline .timeline-item:nth-child(n+5) {
    display: none;
}

.criteria-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Logo styling */
.logo-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: auto;
}

/* Add FAQ section styling */
.faq-page .section-header {
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Blog improvements */
.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content h2 {
    margin-top: 2rem;
}

.blog-post-content h3 {
    margin-top: 1.5rem;
}

.seo-keywords {
    color: var(--color-accent);
    font-weight: 600;
}
