/* Info Card Widget */
.icw-card {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.icw-card:hover {
    text-decoration: none;
    color: inherit;
}

.icw-title {
    font-size: 20px;
    font-weight: 700;
    color: #2ecc71;
    margin: 0 0 16px;
    line-height: 1.4;
    text-align: center;
    transition: color 0.3s ease;
}

.icw-card:hover .icw-title {
    color: #ffffff;
}

.icw-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.icw-card:hover .icw-desc {
    color: #ffffff;
}
