/* Global Typography & Headings */
    .section-title::after {
        content: unset;
    }
    .subheading {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        color: var(--accent-color);
    }

    .section-title {
        color: var(--text-color);
        line-height: 1.2;
    }

    /* --- Industry Card Styling --- */
    .industries-grid-section {
        background-color: var(--light-bg);
    }

    .industry-card {
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        background-color: white;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-light);
        height: 100%;
        /* Ensure uniform height in the grid */
    }

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: var(--accent-color);
        /* Highlight with accent color on hover */
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        /* Use the accent color for distinction */
        background: #e9ecef;
        /* Light gray background */
        color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .industry-card:hover .card-icon-wrapper {
        background: var(--primary-color);
        color: white;
    }

    .industry-card .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .industry-card .card-description {
        font-size: 0.9rem;
        color: var(--secondary-color);
    }

    /* --- CTA Section --- */
    .cta-section-alt {
        background: var(--gradient-primary);
        /* Use a strong background for CTA */
        color: white;
    }

    .cta-section-alt .section-title-white {
        color: white;
        font-size: 2rem;
    }

    .btn-outline-light-custom {
        color: white;
        border-color: white;
        background-color: transparent;
        border-radius: 50px;
        padding: 12px 30px;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .btn-outline-light-custom:hover {
        color: var(--primary-color);
        background-color: white;
        border-color: white;
        transform: translateY(-2px);
    }