.mela-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid #6ed7b7; /* Adds the subtle green border shown in image */
    box-shadow: 0px 5px 25px rgba(0,0,0,0.03); /* Subtle card shadow */
}

.mela-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mela-info-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   filter: drop-shadow(0px 5px 6.5px rgba(173,58,255,0.19));
background-color: #fdfeff;
}

/* Base icon sizing */
.mela-info-icon-wrapper i {
    font-size: 30px;
    color: #a621ff;
}

.mela-info-icon-wrapper svg {
    width: 30px;
    height: auto;
    fill: #a621ff;
}

.mela-info-number {
    font-size: 26px;
    font-weight: 900;
    color: #a621ff;
    line-height: 1;
}

.mela-info-content {
    display: flex;
    flex-direction: column;
}

.mela-info-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1e2f;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.mela-info-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .mela-info-card {
        padding: 20px;
    }
    .mela-info-header {
        margin-bottom: 20px;
    }
    .mela-info-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .mela-info-icon-wrapper i {
        font-size: 24px;
    }
    .mela-info-icon-wrapper svg {
        width: 24px;
    }
    .mela-info-title {
        font-size: 19px;
    }
    .mela-info-description {
        font-size: 14px;
    }
}
