.service-card {
    border-radius: 15px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid;
}

.service-card-header .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-body .description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-body .check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: .5rem;
    flex-grow: 1;
}

.service-card-body .check-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-card-body .check-list li i {
    flex-shrink: 0;
}

.service-card-footer {
    padding: 1.5rem 2rem;
    text-align: right;
    border-top: 1px solid;
    margin-top: auto;
}

.price-label {
    font-size: 0.9rem;
    display: block;
}

.price-value {
    font-size: 1.6rem;
    font-weight: bold;
}

.price-value span {
    font-size: 0.9rem;
    font-weight: normal;
}