.angie-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.angie-service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.angie-service-card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.angie-service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-service-card-title {
    font-weight: 700;
    line-height: 1.3;
}

.angie-service-card-description {
    line-height: 1.6;
}

.angie-service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.angie-service-card-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.angie-service-card-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    top: 2px;
}