/* Header Section */
.industrial-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.industrial-header h2 {
    color: #2d5016;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.industrial-header .lead {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Grid Layout */
.industrial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card Styling */
.industrial-card {
    background: #ffffff;
    border: 1px solid #e0ead6;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industrial-card:hover {
    border-color: #4a7c2c;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
    transform: translateY(-4px);
}

.industrial-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.industrial-description {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
}

/* CTA Section */
.industrial-cta {
    text-align: center;
    background: #fafcf9;
    border: 1px solid #e0ead6;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.industrial-cta p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #4a7c2c;
    padding: 12px 32px;
    border: 2px solid #4a7c2c;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4a7c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 44, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .industrial-header h2 {
        font-size: 1.8rem;
    }

    .industrial-header .lead {
        font-size: 1rem;
    }

    .industrial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industrial-card {
        padding: 1.5rem;
    }

    .industrial-icon {
        font-size: 2.5rem;
    }

    .industrial-title {
        font-size: 1.15rem;
    }

    .industrial-cta {
        padding: 2rem 1.5rem;
    }

    .industrial-cta p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .industrial-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .industrial-grid {
        gap: 1rem;
    }

    .industrial-card {
        padding: 1.25rem;
    }
}