.automotive-challenge-card {
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 100%;
    box-shadow: 0 12px 24px rgba(26, 54, 122, 0.12);
    text-align: center;
    cursor: default;
    outline-offset: 4px;
    transition: box-shadow 0.3s ease;
}
.automotive-challenge-card:focus {
    box-shadow: 0 0 0 4px #3d91f4;
    outline: none;
}

.icon-circle {
    background: linear-gradient(135deg, #2e6ccf, #3d91f4);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(62, 111, 244, 0.35);
}
.icon-circle svg {
    width: 32px;
    height: 32px;
}

.automotive-challenge-heading {
    margin: 0 0 0.75rem 0;
}

.automotive-challenge-text {
    line-height: 1.5;
    color: var(--gray);
    margin: 0;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .automotive-challenge-card {
        padding: 1.5rem 1.75rem;
    }
}

.row.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-height-row > div {
    display: flex;
}

.automotive-challenge-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.automotive-challenge-card:hover {
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
}

.automotive-challenge-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.automotive-challenge-text {
    flex-grow: 1;
    line-height: 1.5;
    color: var(--gray);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #3a86ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgb(58 134 255 / 0.4);
}

.icon-circle svg {
    width: 32px;
    height: 32px;
}

.automotive-container {
    border-top: 2px dashed #f7941e;
    border-right: 2px dashed #f7941e;
    border-left: 2px dashed #f7941e;
    border-bottom: 5px solid #f7941e;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.desc {
    color: var(--gray);
}

h5 {
    font-weight: 600;
}