/* Hide semantic HTML from users when JS is enabled */
.js-enabled .header-section,
.js-enabled .search-section,
.js-enabled .content-categories,
.js-enabled .trust-signals,
.js-enabled .reports-section {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hero-logo {
    max-width: 200px;
    height: auto;
}

/* Ensure content is visible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Style for semantic images when visible */
.category-grid,
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.category-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.features-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
