.feature-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--page-500);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: var(--feature-icon-background-color);
    color: var(--feature-icon-color);
}

.feature-title, .process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-title {
    margin-bottom: 0.5rem;
}

.feature-description, .process-description {
    color: var(--slate-600);
}

.process-content {
    flex-grow: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--page-500);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-detail-section, .feature-description {
    margin-bottom: 1.5rem;
}

.service-detail-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--page-600);
}

.service-detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-detail-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--page-500);
}