.content-section {
    padding: var(--section-padding);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Industry Focus Section */
.industry-focus-section {
    background-color: var(--card-border-left);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    /* more padding for inner spacing */
    text-align: center;
    margin: 2rem auto;
    /* reduce margin and center horizontally */
    max-width: 1200px;
    /* constrain width */
}

.industry-focus-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color-darkest);
}

.industry-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.02);
}

.industry-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-color-dark);
    margin-bottom: 0;
    /* remove extra margin */
}

/* Buttons */
.industry-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    /* a bit more space above buttons */
    flex-wrap: wrap;
}

.industry-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.industry-btn.primary {
    background-color: var(--primary-blue-bright);
    /* #2196f3 */
    color: var(--text-color-light);
    /* white */
}

.industry-btn.secondary {
    background-color: transparent;
    color: var(--text-color-dark);
    /* #333 */
    border: 2px solid var(--text-color-dark);
    /* #333 */
}

.industry-btn.primary:hover,
.industry-btn.secondary:hover {
    background-color: var(--bg-black);
    /* #000 */
    color: var(--text-color-light);
    /* #fff */
    border-color: var(--card-border-left);
    /* #f7b801 */
}

/* Responsive */
@media (min-width: 768px) {
    .industry-cards {
        flex-direction: row;
        justify-content: space-between;
    }

    .industry-card {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .industry-focus-section {
        margin: 0.5rem;
        /* smaller margin on mobile */
    }
}