/* ===========================
   INDUSTRIES PAGE
   =========================== */

.industries-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 2rem 3rem;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.industries-section h1 {
    text-align: center;
    color: #0066FF;
    margin-bottom: 1rem;
}

.industries-section .intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

/* Industry Cards */
.industry-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.industry-card {
    padding: 1.5rem 1.8rem;
    background: #fff;
    border-left: 6px solid #00A3FF;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.industry-card h2 {
    color: #0066FF;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.industry-card p {
    line-height: 1.7;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .industries-section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .industry-card {
        padding: 1.2rem;
    }

    .industry-card h2 {
        font-size: 1.2rem;
    }

    .industries-section .intro {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .industries-section {
        padding: 1.25rem;
        margin: 1.5rem 1rem;
    }

    .industries-section h1 {
        font-size: 1.5rem;
    }

    .industry-card {
        padding: 1rem;
    }

    .industry-card h2 {
        font-size: 1.1rem;
    }
}
