.auto-service-card-wrapper {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #F1B5B5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.asc-image {
    position: relative;
    height: 160px;
    width: 100%;
}
.asc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}
.asc-icon {
    position: absolute;
    bottom: -26px;
    left: 20px;
    width: 52px;
    height: 52px;
    background-color: #E30613;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    z-index: 2;
}
.asc-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
.asc-content {
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.asc-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    color: #111111;
    font-size: 20px;
    margin: 0 0 10px;
}
@media (max-width: 767px) {
    .asc-title {
        font-size: 18px;
    }
}
.asc-desc {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 20px;
    flex-grow: 1;
}
.asc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #E30613;
    color: #111111;
    border-radius: 8px;
    padding: 14px 20px;
    text-decoration: none;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    cursor: pointer;
}
.asc-btn-text {
    flex-grow: 1;
    text-align: center;
}
.asc-btn-icon {
    color: #E30613;
    transition: color 0.3s ease;
    margin-left: 10px;
}
.asc-btn:hover {
    background: #E30613;
    color: #ffffff;
}
.asc-btn:hover .asc-btn-icon {
    color: #ffffff;
}