.lfg-service-box {
    padding: 30px;
    border-radius: 12px;
    height: 100%; /* Ensures all boxes in a row have the same height */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.lfg-service-box:hover {
    transform: translateY(-5px);
}

.lfg-icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.lfg-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 8px;
    margin-right: 12px;
}

.lfg-icon-wrap .lfg-icon-text {
    font-weight: 500;
}

.lfg-service-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
}

.lfg-service-subtitle {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b; /* Example color */
}

.lfg-service-description {
    margin-bottom: 24px;
    flex-grow: 1; /* Pushes the list to the bottom */
}

.lfg-service-list-wrapper {
    margin-top: auto; /* Aligns to the bottom */
}

.lfg-service-list-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
}

.lfg-service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.lfg-service-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.lfg-service-list li:last-child {
    margin-bottom: 0;
}

.lfg-service-list li::before {
    content: '✔'; /* You can change this or use a Font Awesome icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981; /* Example color */
}