.card-design {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 24px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-design:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-design .special-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.card-design .special-icon p {
    margin: 0;
}

.card-design h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

/* Ensure mobile cards look good with the spacing */
@media (max-width: 767px) {
    .card-design {
        padding: 16px 12px;
    }
    .card-design h4 {
        font-size: 1rem;
    }
}
