
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    .info-card h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-card p {
        margin: 8px 0 10px 0;
        color: #374151;
    }

    .info-card ul {
        margin: 10px 0 0 0;
        padding-left: 20px;
    }

    .info-card li {
        margin-bottom: 8px;
        line-height: 1.5;
    }

.highlight {
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 10px;
}
