.breadcrumb a:hover {
    color: #C9A959;
}

.page-header {
    display: none;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro p {
    color: #666;
    font-size: 18px;
    margin: 0 auto;
    line-height: 1.8;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.industry-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.industry-header {
    background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.industry-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.industry-header h3 {
    font-size: 22px;
}

.industry-body {
    padding: 25px;
}

.industry-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.industry-features {
    list-style: none;
    margin-bottom: 20px;
}

.industry-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #F0F0F0;
}

.industry-features li:last-child {
    border-bottom: none;
}

.industry-features li::before {
    content: "✓ ";
    color: #C9A959;
    font-weight: bold;
}

.btn-detail {
    display: inline-block;
    padding: 10px 25px;
    background: #1A3A5C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-detail:hover {
    background: #2C5F8D;
}

@media (max-width: 768px) {

    .banner {
        height: 200px;
    }
}
