.card {
    height: 100%;
}

.interactive-box {
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.interactive-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.interactive-box:after {
    content: '';
    background: rgba(54, 54, 54, 0.1);
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    left: -100%;
    transition: all 0.5s ease-in-out;
}

.interactive-box:hover:after {
    left: 100%;
    right: 0;
}

.icon {
    margin-right: 10px;
}

.inner-list {
    list-style-type: disc;
    margin-left: 2em;
    margin-bottom: 1em;
}
