.industry-nav-section {
    margin-bottom: 40px;
}
.industry-nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}
.industry-nav-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}
.industry-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.industry-nav-item {
    display: inline-block;
    padding: 8px 20px;
    background: #F3F4F6;
    border-radius: 20px;
    color: #374151;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.industry-nav-item:hover,
.industry-nav-item.active {
    background: #0070f3;
    color: #fff;
}
.industry-category-section {
    margin-bottom: 50px;
}
.industry-category-title {
    margin-bottom: 20px;
}
.industry-category-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.industry-category-title h2 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}
.industry-category-title h2 a:hover {
    color: #0070f3;
}
.industry-category-underline {
    width: 40px;
    height: 2px;
    background-color: #0070f3;
}
.industry-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.industry-tag {
    font-size: 0.7rem;
    color: #4b5563;
    background: #F3F4F6;
    padding: 4px 10px;
    border-radius: 12px;
}
.view-all-link {
    margin-top: 15px;
    margin-bottom: 40px;
}
.view-all-link a {
    color: #0070f3;
}
.view-all-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .industry-category-title h2 {
        font-size: 18px;
    }
}
